-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
47 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
"""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.5.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~=5.1.1",
"psycopg2-binary~=2.9.9",
"networkx~=3.3",
"obonet~=1.1.0",
"biopython~=1.84",
"tqdm~=4.66.5",
"typing~=3.7.4.3",
"bibtexparser~=1.4.1",
"djangorestframework~=3.15.2",
"drf-yasg==1.21.8",
"drf-nested-routers~=0.94.1",
"pysam~=0.22.1",
"django-haystack~=3.3.0",
],
zip_safe=False,
)