-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.48 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = 'kinda'
version = '0.3'
description = 'Kinetic DNA strand-displacement Analyzer'
authors = [{name = "Joseph Berleant"}, {name = "Chris Berlind"},
{name = "Stefan Badelt"}, {name = "Frits Dannenberg"},
{name = "Joseph Schaeffer"},
{name = "Erik Winfree", email = "[email protected]"}]
maintainers = [{name = "Boyan Beronov", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.10"
dependencies = [
"multistrand >= 2.2",
"peppercornenumerator >= 1.1.1",
"crnsimulator >= 0.9",
"multiprocess >= 0.70.15",
"numpy >= 1.24",
"matplotlib",
]
[project.scripts]
KinDA = "kinda.scripts.KinDA:cli_main"
[project.urls]
Home = "https://github.com/DNA-and-Natural-Algorithms-Group/KinDA"