-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 971 Bytes
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
[project]
name = "dnacauldron"
version = "2.0.12"
license = "MIT"
authors = [{ name = "Zulko" }]
description = "Cloning simulation for DNA assembly (Golden Gate, Gibson...)"
readme = "pypi-readme.rst"
keywords = ["DNA", "assembly", "cloning", "simulator", "synthetic biology"]
dependencies = [
"Biopython",
"numpy",
"matplotlib",
"fuzzywuzzy",
"pandas",
"scipy",
"networkx",
"dna_features_viewer",
"flametree",
"snapgene_reader",
"proglog",
"xlwt",
"openpyxl",
"python-Levenshtein",
"xlrd",
]
[project.optional-dependencies]
reports = ["pdf_reports"]
[project.scripts]
dnacauldron = "dnacauldron.cli:main"
[project.urls]
Homepage = "https://github.com/Edinburgh-Genome-Foundry/dnacauldron"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["docs*", "examples*", "tests*"]
[tool.setuptools.package-data]
dnacauldron = ["report_assets/*", "report_assets/imgs/*"]