-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·63 lines (54 loc) · 1.5 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
import os
from setuptools import find_packages, setup
# determining the directory containing setup.py
setup_path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_path, 'README.md'), encoding='utf-8') as f:
readme = f.read()
setup(
# package information
name='pygna',
packages=find_packages(),
version='3.4.0',
description='Geneset Network Analysis',
long_description=readme,
license='MIT',
url='https://github.com/stracquadaniolab/pygna',
keywords='Bioinformatics Network Statistics',
# author information
author='Viola Fanfani, Giovanni Stracquadanio',
author_email='[email protected]',
# installation info and requirements
install_requires=[
'pandas',
'numpy',
'scipy',
'matplotlib',
'pyyaml',
'tables>=3.4.4',
'seaborn>=0.9',
'palettable',
'networkx==2.3',
'statsmodels',
'argh',
'mygene'
],
setup_requires=[],
# test info and requirements
test_suite='tests',
tests_require=[],
python_requires='>=3.8',
# package deployment info
include_package_data=True,
zip_safe=False,
# all tools have cli interface
entry_points={
'console_scripts': [
'pygna=pygna.cli:main',
],
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
)