-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (54 loc) · 1.82 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
[tool.poetry]
name = "classifier-pipeline"
version = "0.1.0"
description = ""
license = "MIT"
authors = ["Biofactoid <[email protected]>"]
maintainers = ["Biofactoid <[email protected]>"]
readme = "README.md"
repository = "https://github.com/PathwayCommons/ncbiutils"
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
ncbiutils = "^0.7.0"
loguru = "^0.6.0"
pathway-abstract-classifier = "^0.2.2"
pydantic = "^1.9.0"
rethinkdb = "^2.4.9"
fastapi = "^0.79.0"
uvicorn = {extras = ["standard"], version = "^0.18.2"}
urllib3 = "1.26.15"
protobuf = ">=3.20.0,<3.21.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-datadir = "^1.3.1"
flake8 = "^4.0.1"
black = "^22.3.0"
pytest-cov = "^3.0.0"
responses = "^0.20.0"
pytest-mock = "^3.7.0"
mypy = "^0.950"
python-semantic-release = "^7.28.1"
[tool.black]
line-length = 119
skip-string-normalization = true
[tool.semantic_release]
version_variable = "pyproject.toml:version"
branch = "main" # branch to make releases of
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"