forked from mb-BCA/pyMOU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 1.51 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
"""setup.py"""
from setuptools import setup, find_packages
with open("requirements.txt") as reqs_file:
REQS = [line.rstrip() for line in reqs_file.readlines() if line[0] not in ['\n', '-', '#']]
setup(
name = 'pymou',
description = 'A library for simulation and connectivity estimation of multivariate Ornstein-Uhlenbeck (MOU) process in Python / NumPy.',
url = 'https://github.com/mb-BCA/pyMOU',
version = '0.2.0',
license = 'Apache License 2.0',
author = 'Andrea Insabato, Gorka Zamora-López, Matthieu Gilson',
author_email = 'galib@zamora-lopez.xyz',
install_requires = REQS,
packages = find_packages(exclude=['doc', '*tests*']),
scripts = [],
include_package_data = True,
keywords = 'network dynamic system, Ornstein-Uhlenbeck process, connectivity estimation',
classifiers = [
'Development Status :: 1 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)