forked from lmb-embrapa/machado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.32 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
46
47
48
"""Setup."""
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="machado",
version="0.4.0",
packages=find_packages(),
include_package_data=True,
license="GPL License",
description="This library provides users with a framework to store, search and visualize biological data.",
long_description=README,
url="https://github.com/lmb-embrapa/machado",
author="LMB",
author_email="",
classifiers=[
"Environment :: Console",
"Framework :: Django :: 3.2",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
scripts=["bin/fixChadoModel.py"],
install_requires=[
"django~=3.2.14",
"psycopg2-binary==2.9.3",
"networkx==2.7.1",
"obonet==0.3.0",
"biopython==1.79",
"tqdm==4.63.0",
"typing==3.7.4.3",
"bibtexparser==1.2.0",
"djangorestframework==3.13.1",
"drf-yasg==1.20.0",
"drf-nested-routers==0.93.4",
"pysam==0.18.0",
"django-haystack==3.2.1",
],
zip_safe=False,
)