-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 811 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
import setuptools
def readme():
with open('README.rst') as f:
return f.read()
setuptools.setup(
name='vtna',
version='0.1.2',
description='Visualizing temporal networks with attributes',
long_description=readme(),
url='https://gitlab.uni-koblenz.de/marvinforster/vtna',
author='Alex Baier, Marvin Forster, Philipp Töws',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6'
],
author_email='',
license='',
packages=['vtna'],
zip_safe=False,
install_requires=[
'numpy',
'pandas==0.21.0',
'networkx>=2.0',
'scipy',
'scikit-learn'
],
test_suite='nose.collector',
tests_require=['nose', 'coverage'],
setup_requires=['nose', 'coverage']
)