-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 934 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
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pycello",
version="2.0.0",
author="Timothy Jones",
author_email="jonests@bu.edu",
description="A Python module for processing Cello v2 inputs and outputs, namely the netlist and UCF.",
license="GPLv3",
keywords="cello cellular-logic synthetic-biology",
url="https://github.com/CIDARLAB/pycello-v2",
packages=find_packages(),
install_requires=[
"sympy>=1.5",
"numpy>=1.17"
],
long_description=read('README.org'),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)