-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.29 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='unnet',
version='0.0.1',
packages=['unnet'],
url='',
license='',
author='Felix Stamm',
author_email='felix.stamm@cssh.rwth-aachen.de',
description='un-net is a library that can be used to study uncertainty in networks',
install_requires=[
'pandas>=0.24.0',
'numpy',
'matplotlib',
# 'graph-tool',
'numba',
'tqdm',
],
tests_require=['pytest'],
python_requires='>=3.6',
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
('Programming Language :: Python :: '
'Implementation :: CPython')
],
)