-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (26 loc) · 857 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
from setuptools import setup, find_packages
VERSION = '0.0.1'
with open('README.md', 'r') as readme:
description = readme.read()
setup(
name='bigraph',
version=VERSION,
author='Ryan Spangler',
author_email='[email protected]',
description='a python interface to Robin Milner\'s bigraph formalism',
url='https://github.com/prismofeverything/bigraph',
packages=find_packages(include=['bigraph', 'bigraph.*']),
python_requires=">=3.6",
install_requires=[
'fire',
'parsimonious',
'networkx',
],
extras_require={'plotting': ['matplotlib>=2.2.0', 'jupyter']},
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest'],
entry_points={
'console_scripts': ['bigraph=bigraph.bigraph:main']
},
# package_data={'bigraph': ['data/schema.json']}
)