-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
74 lines (64 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
__all__ = [
'VERSION'
]
import os
from pathlib import Path
import setuptools
with open('README.md', 'r') as fp:
long_description = fp.read()
package_src_dir = Path(__file__).parent
MAJOR = 1
MINOR = 1
MICRO = 2
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
def get_docs_url():
return 'https://comptox.ai/use/index.html'
setuptools.setup(
name='comptox_ai',
version=VERSION,
author='Joseph D. Romano, PhD',
author_email='[email protected]',
description='An ontology and knowledge base to support discovery in computational toxicology',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jdromano2/comptox_ai',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Environment :: Console'
],
python_requires='>=3.7',
include_package_data=True,
install_requires=[
'numpy==1.24.4',
'scipy==1.10.1',
'pandas',
'neo4j==4.3.4',
'networkx==2.6.3',
'rdflib==5.0.0',
'openpyxl==3.0.7',
'owlready2==0.34',
'PyYAML==5.3.1',
'ipdb==0.13.9',
'pytest==7.4',
],
extras_require={
'testing': ['pytest'],
'coverage': ['pytest-cov', 'codecov'],
'docs': ['numpydoc', 'sphinxext-opengraph', 'ablog==0.10.19',
'sphinx==6.2.1', 'docutils>=0.19', 'Jinja2>=3.0'],
'styling': ['isort']
},
entry_points={
'console_scripts': [
'make_qsar=comptox_ai.scripts.make_qsar:main'
]
}
)