-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.63 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
[tool.poetry]
name = "dddpy"
version = "0.5.1"
description = "A framework to support ddd python projects"
authors = ["Yuichiro Smith <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
repository = "https://github.com/aeroworks-io/dddpy"
keywords = ["DDD", "Domain"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/aeroworks-io/dddpy/issues"
"Coverage Report" = "https://codecov.io/gh/aeroworks-io/dddpy/branch/main"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.7.2"
Inject = "^4.3.1"
Faker = ">= 4.0.0, < 7.0.0"
python-ulid = "^1.0.2"
inflection = "^0.5.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.1.2"
coverage = "^5.3"
pytest-cov = "^2.10.1"
codecov = "^2.1.10"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
python_classes = [
"Test*",
"*Test",
]
python_files = [
"test_*.py",
"*_test.py",
"__init__.py",
]
[tool.coverage.report]
exclude_lines = [
"@abstract"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"