-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
58 lines (53 loc) · 1.61 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[project]
name = "BioCRNpyler"
version = "1.1.2"
description = "A chemical reaction network compiler for generating large biological circuit models"
authors = [{name='Build-A-Cell'}]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
]
license = {file = "LICENSE"}
readme = "README.md"
keywords=["SBML", "synthetic biology", "modeling",
"Chemical Reaction Network", "CRN"]
dependencies = [
"python-libsbml",
"numpy<2.0",
"matplotlib",
"networkx",
"bokeh>=1.4.0",
"fa2_modified",
"jupyter",
"pytest",
"pytest-cov",
"nbconvert"
]
requires-python = ">=3.7"
[project.optional-dependencies]
test = [
"pytest"
]
[project.urls]
"Homepage" = "https://github.com/buildacell/biocrnpyler/"
"Bug Tracker" = "https://github.com/buildacell/biocrnpyler/issues"
[tool.setuptools]
packages = ["biocrnpyler"]
include-package-data = true
package-dir = {"biocrnpyler"="biocrnpyler"}