-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
39 lines (37 loc) · 1.11 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
from setuptools import setup
setup(
name='OmicsIntegrator',
packages=['OmicsIntegrator'],
package_dir={'OmicsIntegrator': 'src'},
package_data={'OmicsIntegrator': ['annotation/final_annotation.pickle']},
version='2.4.0',
url='https://github.com/fraenkel-lab/OmicsIntegrator2',
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'],
license='MIT',
author='alexlenail',
author_email='[email protected]',
description='',
install_requires=[
"numpy>=1.26.0",
"pandas>=2.2.0",
"networkx>=3.2",
"pcst_fast==1.0.10",
"python-louvain",
"goenrich==1.7.0",
"scikit-learn==1.4",
"axial>=0.2.2",
"matplotlib>=3.8.2"
],
entry_points={
'console_scripts': [
'OmicsIntegrator = src.__main__:main',
]
},
)