-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (53 loc) · 1.43 KB
/
setup.py
File metadata and controls
58 lines (53 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import setuptools
import codecs
NAME = "refget-loader"
VERSION = "0.1.0"
AUTHOR = "Jeremy Adams"
EMAIL = "jeremy.adams@ga4gh.org"
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs')
codecs.register(func)
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
"awscli",
"click",
"jsonschema",
"requests"
]
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description="Schedule the processing of ENA sequences and upload to S3 "
+ "public dataset",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ga4gh/refget-loader",
package_data={
'': [
'*.ini',
'refget/loader/config/schemas/*.json'
]
},
packages=setuptools.find_packages(),
install_requires=install_requires,
entry_points={
"console_scripts": [
'refget-loader=ga4gh.refget.loader.cli.entrypoint:main',
]
}
,
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics"
),
)