-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.75 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
70
71
72
73
[build-system]
requires = ["hatchling"]
build-backend = 'hatchling.build'
[project]
name = "fastapix"
description = "FastAPI X is a powerful CLI tool to help you! :rocket:"
readme = "README.md"
authors = [{ name = "Marcelo Trylesinski", email = "marcelotryle@email.com" }]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
license = "MIT"
requires-python = ">=3.7"
dependencies = [
"typer>=0.6.1",
"rich>=12.6.0",
"appdirs>=1.4.4",
"libcst>=0.4.7",
"pytablewriter>=0.64.2",
]
optional-dependencies = {}
dynamic = ["version"]
[tool.hatch.version]
path = "fastapix/main.py"
[project.urls]
Homepage = "https://github.com/Kludex/fastapix"
Source = "https://github.com/Kludex/fastapix"
Twitter = "https://twitter.com/marcelotryle"
Funding = 'https://github.com/sponsors/Kludex'
[project.scripts]
fastapix = "fastapix.main:app"
[tool.mypy]
strict = true
show_error_codes = true
[tool.flake8]
statistics = true
max-line-length = 88
ignore = ["E203", "E501", "W503"]
per-file-ignores = ["__init__.py:F401"]
[tool.black]
target-version = ["py37"]
[tool.isort]
profile = "black"
combine_as_imports = true
[tool.pytest.ini_options]
addopts = ["--strict-config", "--strict-markers"]
filterwarnings = ["error"]
[tool.coverage.run]
source_pkgs = ["fastapix", "tests"]
[tool.coverage.report]
show_missing = true
skip_covered = true