-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 962 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='biolabsim',
version='0.1.0',
author='Ulf Liebal',
author_email='[email protected]',
description='biolabsim is a collection of workflows using the silvio software.',
keywords='biotechnology, microbiology, virtual cell, systems biology',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://git.rwth-aachen.de/ulf.liebal/biolabsim.git',
packages=[], # contains no packages, only notebooks.
package_dir={'': 'src'},
package_data = {'': ['*.csv','*.pkl','*.xml']},
python_requires='~=3.9',
install_requires=[
'biopython ~= 1.79',
'cobra ~= 0.22',
'joblib ~= 1.0',
'matplotlib ~= 3.3',
'numpy ~= 1.18',
'pandas ~= 1.2',
'pickleshare ~= 0.7',
'scipy ~= 1.6',
],
)