-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (58 loc) · 1.38 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
[tool.poetry]
name = "minos_auth_token"
version = "0.1.0"
description = "Minos Boilerplate contains all the boilerplate you need to create a Minos Python package."
readme = "README.md"
repository = "https://github.com/clariteia/minos_auth_token"
homepage = "https://clariteia.com"
authors = ["Clariteia Devs <devs@clariteia.com>"]
license = "MIT"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
keywords = [
"clariteia",
"minos",
"microservice",
"saga",
]
packages = [
{ include = "minos" }
]
include = [
"AUTHORS.md",
"HISTORY.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.3.2"
cached-property = "^1.5.2"
aiohttp-middlewares = "^1.1.0"
aiomisc = "^15.2.16"
PyYAML = "^6.0"
uuid = "^1.30"
SQLAlchemy = "1.4.22"
psycopg2 = "^2.9.3"
[tool.poetry.dev-dependencies]
black = "^19.10b"
isort = "^5.8.0"
pytest = "^6.2.4"
coverage = "^5.5"
flake8 = "^3.9.2"
Sphinx = "^4.0.1"
pre-commit = "^2.12.1"
sphinx-autodoc-typehints = "^1.12.0"
sphinxcontrib-apidoc = "^0.3.0"
sphinx-rtd-theme = "^0.5.2"
m2r2 = "^0.2.7"
mistune = "0.8.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
auth_token = "minos.auth_token.cli:main"