generated from vivarium-collective/vivarium-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.06 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
# import os
# import glob
# import setuptools
from distutils.core import setup
with open("README.md", 'r') as readme:
long_description = readme.read()
setup(
name='vivarium-biosimulators',
version='0.0.1',
packages=[
'vivarium_biosimulators',
'vivarium_biosimulators.processes',
'vivarium_biosimulators.composites',
'vivarium_biosimulators.experiments',
],
author='', # TODO: Put your name here.
author_email='', # TODO: Put your email here.
url='https://github.com/vivarium-collective/vivarium-biosimulators',
license='', # TODO: Choose a license.
entry_points={
'console_scripts': []},
short_description='', # TODO: Describe your project briefely.
long_description=long_description,
long_description_content_type='text/markdown',
package_data={},
include_package_data=True,
install_requires=[
'vivarium-core',
'biosimulators-utils',
'biosimulators-tellurium',
'biosimulators-cobrapy',
],
tests_require=[
'pytest',
],
)