-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (43 loc) · 1.3 KB
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="agr-file-generator",
version="5.4.0",
author="Alliance of Genome Resources",
author_email="[email protected]",
description="This tool creates files from Alliance resources",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alliance-genome/agr_file_generator",
include_package_data=True,
package_dir={'': 'src'},
packages=find_packages('src'),
py_modules=['common', 'data_source'],
install_requires=[
'neo4j==1.7.3',
'neobolt==1.7.13',
'neotime==1.7.4',
'python-dateutil==2.7.3',
'wget==3.2',
'pyfaidx==0.5.5.2',
'wheel==0.38.1',
'pytest==4.6.2',
'Click==7.0',
'requests==2.31.0',
'requests-toolbelt==0.9.1',
'retry==0.9.2',
'urllib3==1.26.13',
'coloredlogs==10.0',
'PyYAML==6.0.1',
'json5==0.8.5',
'jsonschema==3.2.0',
'simplejson==3.17.0',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)