-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (26 loc) · 1.32 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
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
setup(
name='pyRN',
version='0.6',
description='Reaction Network Structure and Simulation Library for Resilience',
long_description='Reaction Network Structure and Simulation Library for Resilience',
url='https://github.com/pmaldona/pyRN',
author='Alejandro Bassi, Fionn Daire Keogh, Pedro Maldonado, Tomas Veloz',
author_email='pmaldona@sax.cl',
license='GNU v.3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science',
'Intended Audience :: Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3) ',
'Programming Language :: Python :: 3.9',
],
keywords='chemical reaction networks, closed structure, decomposition, simulation, random walk, random network generator',
packages=find_packages(exclude=['tests']),
# run-time dependencies that will be installed by pip
# install_requires=['numpy','pandas','beautifulsoup4', 'bitarray','scipy','networkx','libroadrunner','lxml','pyvis','pypoman','matplotlib', 'joblib']
install_requires=['numpy','pandas','beautifulsoup4', 'bitarray','scipy','networkx','libroadrunner','lxml','pyvis','matplotlib','joblib','pulp','seaborn']
)