-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (46 loc) · 1.09 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "tamipami"
dynamic = ["version"]
description = "Software to identify the PAM or TAM sites from high-throughput cleavage screening experiments"
authors = [
{name = "Adam R. Rivers", email = "[email protected]"},]
maintainers = [
{name = "Adam R. Rivers", email = "[email protected]"},]
license = {file = "LICENSE.txt"}
readme = "README.md"
keywords = ["CRISPR","Cas"]
requires-python = ">=3.10"
dependencies = [
"biopython",
"scipy",
"pandas",
"ckmeans",
"matplotlib",
"scikit-bio",
"treelib",
"textdistance",
"logomaker",
"altair",
"pyyaml",
"streamlit",
"tables"
]
[external]
dependencies = [
"pkg:sourceforge:[email protected]"
]
[project.urls]
repository = "http://github.com/usda-ars-gbru/tamipami"
[project.optional-dependencies]
tests = [
"pytest"
]
[tool.setuptools_scm]
# version_file = "tamipami/_version.py"
[tool.setuptools]
packages = ['tamipami']
[project.scripts]
tamipami = "tamipami.cli:main"