-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.01 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
import os
import glob
import setuptools
from distutils.core import setup
with open("README.md", 'r') as readme:
long_description = readme.read()
setup(
name='smoldyn-process',
version='0.0.1',
packages=[
'smoldyn_process',
'smoldyn_process.processes',
'smoldyn_process.composites',
'smoldyn_process.experiments',
],
author='Eran Agmon, Steve Andrews, Ryan Spangler, Alex Patrie',
url='https://github.com/vivarium-collective/smoldyn-process',
license='MIT',
entry_points={
'console_scripts': []
},
short_description='A Process-bigraph wrapper for Smoldyn',
long_description=long_description,
long_description_content_type='text/markdown',
package_data={},
include_package_data=True,
install_requires=[
'process-bigraph',
'biosimulators-simularium',
'smoldyn',
'jupyterlab'
],
)