-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
46 lines (39 loc) · 1.63 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""pathpy setup script."""
from setuptools import setup, find_packages
from pathpy import __version__
with open('README.rst', encoding='utf-8') as readme_file, open('HISTORY.rst', encoding='utf-8') as history_file:
readme = readme_file.read()
history = history_file.read()
install_requirements = ['numpy', 'scipy']
setup_requirements = ['pytest-runner']
setup(
author="Ingo Scholtes",
author_email='[email protected]',
license='AGPL-3.0+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
description="An OpenSource python package for the analysis and visualisation of time series data on"
" complex networks with higher- and multi-order graphical models.",
install_requires=install_requirements,
setup_requires=setup_requirements,
long_description=readme + '\n\n' + history,
python_requires='>=3.5',
keywords='network analysis temporal networks pathways sequence modeling graph mining',
name='pathpy2',
packages=find_packages(),
test_suite='tests',
url='https://www.pathpy.net',
version=__version__,
include_package_data=True,
package_data={'pathpy': ['visualisation_assets/*.html'] + ['visualisation_assets/*.js']},
zip_safe=False
)