-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 964 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
long_description = '''
NetworkAnalysis is a package that facilitates the analysis of omics data using networks.
and is distributed under the MIT license.
'''
setup(name='NetworkAnalysis',
version='0.0.1',
description='Python framework for graph handling and graph representation learning',
long_description=long_description,
author='Maarten Larmuseau & Pieter-Paul Strybol',
author_email='pieterpaul.strybol@ugent.be, maarten.larmuseau@ugent.be',
url='https://github.com/pstrybol/NetworkAnalysis',
license='MIT',
install_requires=[
'scikit-learn',
'matplotlib',
'lifelines',
'networkx',
'umap',
'statsmodels',
'seaborn',
'joblib',
'gseapy',
'pytest',
'coverage',
'coverage_badge',
'gensim',
],
classifiers=[
"Development Status :: 3 - Alpha",
],
packages=find_packages())