-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
executable file
·45 lines (38 loc) · 1.68 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
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
def main():
install_list = ['numpy', 'pandas', 'networkx>=2.1', 'gensim>=4.0.0', 'goatools',
'scipy>=1.3.0', 'matplotlib', 'seaborn', 'plotly>=4.0.0']
setup(name='genewalk',
version='1.6.3',
description='Determine gene function based on network embeddings.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Robert Ietswaart',
author_email='robert_ietswaart@hms.harvard.edu',
url='https://github.com/churchmanlab/genewalk',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords=['gene function', 'network', 'embedding'],
packages=find_packages(),
install_requires=install_list,
extras_require={'indra': ['indra']},
tests_require=['nose'],
include_package_data=True,
entry_points={'console_scripts': ['genewalk = genewalk.cli:main']},
)
if __name__ == '__main__':
main()