-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (56 loc) · 1.62 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
59
60
61
62
63
64
65
66
67
[project]
name = "crispio"
version = "0.0.2.post2"
authors = [
{ name="Eachan Johnson", email="eachan.johnson@crick.ac.uk" },
]
description = "Designing CRISPR-Cas guide RNAs in bacteria."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["biology", "CRISPR", "science", "bacteria"]
classifiers = [
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"bioino>=0.0.2",
"pyyaml",
"nemony",
"numpy",
"pandas",
"streq",
"tqdm"
]
[project.optional-dependencies]
fit = [
"carabiner-tools[pd,mpl]",
"jax[cuda12]",
"optax",
"scipy",
"matplotlib",
]
[project.urls]
"Homepage" = "https://github.com/scbirlab/crispio"
"Bug Tracker" = "https://github.com/scbirlab/crispio"
[project.scripts]
crispio = "crispio.cli:main"
guidefitness = "crispio.fitness:main"
guideplot = "crispio.plot:main"
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
package-data = {"crispio" = ["*.yml"]}
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"