generated from vivarium-collective/vivarium-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 876 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
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-comets',
version='0.0.1',
packages=[
'vivarium_comets',
'vivarium_comets.processes',
'vivarium_comets.composites',
'vivarium_comets.experiments',
],
author='Helen Scott',
author_email='[email protected]',
url='https://github.com/segrelab/vivarium-comets',
license='MIT',
entry_points={
'console_scripts': []},
short_description='a vivarium wrapper for COMETSpy',
long_description=long_description,
long_description_content_type='text/markdown',
package_data={},
include_package_data=True,
install_requires=[
'vivarium-core>=1.0.0',
'pytest',
# TODO: Add other dependencies.
],
)