-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 931 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
35
from setuptools import setup, find_packages
# information about the dingo library
version = "0.0.1"
license = ("LGPL3",)
packages = ["src/fluxpy"]
description = "A python library for metabolic networks sampling and analysis"
author = "Haris Zafeiropoulos"
author_email = "haris.zafeiropoulos@kuleuven.be"
name = "fluxpy"
setup(
name='fluxpy',
version='0.0.1',
package_dir={'': 'src'},
packages=find_packages(where='src'),
# packages=packages, # find_packages()
package_data={
'fluxpy': ['illustrations/*.json'],
},
description='A set of tools to support metabolic modelling analysis related tasks.',
author='Haris Zafeiropoulos',
author_email='haris.zafeiropoulos@kuleuven.be',
url='https://github.com/hariszaf/fluxpy',
license='MIT',
install_requires=[
'numpy',
'scipy',
'pandas',
'plotly',
'cobra',
'mergem'
],
)