-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.25 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
[tool.poetry]
name = "galaxy-mk2"
version = "0.1.0"
description = "This project was generated with fastapi-mvc."
authors = ["kykim88 <toru123@hanmail.net>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kykim88/galaxy-mk2"
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "~0.85.0"
uvicorn = {extras = ["standard"], version = "~0.18.3"}
gunicorn = "~20.1.0"
click = "~8.1.3"
aioredis = "~2.0.1"
aiohttp = "~3.8.3"
[tool.poetry.dev-dependencies]
pytest = "~7.1.3"
pytest-cov = "~4.0.0"
pytest-asyncio = "~0.19.0"
requests = "~2.28.1"
aioresponses = "~0.7.3"
flake8 = "~5.0.4"
flake8-docstrings = "~1.6.0"
flake8-import-order = "~0.18.1"
flake8-todo = "^0.7"
black = "~22.8.0"
Sphinx = "~5.2.3"
Pallets-Sphinx-Themes = "~2.0.2"
myst-parser = "~0.18.1"
[tool.poetry.scripts]
galaxy-mk2 = 'galaxy_mk2.cli:cli'
[tool.poetry.urls]
"Issues" = "https://github.com/kykim88/galaxy-mk2/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"