-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
50 lines (43 loc) · 1.36 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
49
50
#!/usr/bin/env python3
import os
import sys
import setuptools.command.egg_info as egg_info_cmd
from setuptools import setup
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, "README.md")
try:
import gittaggers
tagger = gittaggers.EggInfoFromGit
except ImportError:
tagger = egg_info_cmd.egg_info
install_requires = [
"click < 8", "scikit-learn", "pandas", "tensorflow < 2.4",
"numpy < 2.0", "scipy"
]
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
pytest_runner = ["pytest < 6", "pytest-runner < 5"] if needs_pytest else []
setup(
name="deepgoplus",
version="1.0.2",
description="DeepGOPlus function predictor",
long_description=open(README).read(),
long_description_content_type="text/markdown",
author="Maxat Kulmanov",
author_email="[email protected]",
download_url="https://github.com/bio-ontology-research-group/deepgoplus/archive/v1.0.2.tar.gz",
license="Apache 2.0",
packages=["deepgoplus",],
package_data={"deepgoplus": [],},
install_requires=install_requires,
extras_require={},
setup_requires=[] + pytest_runner,
tests_require=["pytest<5"],
entry_points={
"console_scripts": [
"deepgoplus=deepgoplus.main:main",
]
},
zip_safe=True,
cmdclass={"egg_info": tagger},
python_requires=">=3.7, <3.8",
)