-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 900 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 900 Bytes
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='multiscale_actin',
version='1.1.0',
packages=[
'multiscale_actin',
'multiscale_actin.processes',
'multiscale_actin.composites',
'multiscale_actin.experiments',
],
author='Blair Lyons',
author_email='blair208@gmail.com',
url='',
license='Apache Software License 2.0',
entry_points={
'console_scripts': []},
short_description='Simulate actin and membranes multiscale with Vivarium as connector',
long_description=long_description,
long_description_content_type='text/markdown',
package_data={},
include_package_data=True,
install_requires=[
'vivarium-core',
'process-bigraph',
'simularium-readdy-models',
],
)