-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.69 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
68
69
[tool.poetry]
name = "OpenOligo"
version = "0.1.8"
description = "An open-source platform for programmatically interacting with and managing Nucleic acid sequences synthesis processes."
license = "Apache-2.0"
authors = ["Satyam Tiwary <[email protected]>"]
readme = "README.md"
keywords = ["DNA", "synthesis", "genetics", "open-source"]
[tool.poetry.scripts]
oligo-server = 'openoligo.scripts.server:main'
oligo-runner = 'openoligo.scripts.runner:main'
oligo = 'openoligo.scripts.orchestrator:main'
[tool.poetry.dependencies]
python = "^3.9"
rich = "^13.4.2"
python-dotenv = "^1.0.0"
tqdm = "^4.65.0"
fastapi = "^0.98.0"
pdocs = "^1.2.0"
uvicorn = "^0.22.0"
"RPi.GPIO" = { version = "^0.7.1", optional = true }
Adafruit_BBIO = { version = "^1.2.0", optional = true }
aerich = "^0.7.1"
types-tqdm = "^4.65.0.1"
tortoise-orm = "^0.18.1"
pydantic = "^1.8.2"
httpx = "^0.24.1"
sh = "^2.0.4"
anyio = "^3.7.0"
types-requests = "^2.31.0.1"
jupyter = "^1.0.0"
jupyterlab = "^4.0.2"
redis = "^4.6.0"
types-redis = "^4.6.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.0"
flake8 = "^3.9.2"
black = "^23.3.0"
pylint = "^2.17.4"
mypy = "^1.3.0"
isort = "^5.12.0"
coverage-badge = "^1.1.0"
setuptools = "^68.0.0"
wheel = "^0.40.0"
twine = "^4.0.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
#requires = ["setuptools", "setuptools-scm"]
#build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
[tool.pytest.ini_options]
addopts = "--cov=openoligo --cov-config=pyproject.toml --cov-report=term-missing --cov-fail-under=70"
[tool.coverage.run]
source = ["openoligo"]
[tool.poetry.extras]
rpi = ["RPi.GPIO"]
bb = ["Adafruit_BBIO"]