-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.07 KB
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
[tool.poetry]
name = "mappers"
version = "0.1.dev"
description = "Declarative mappers from ORM models to domain entities. And back again!"
readme = "README.md"
license = "BSD-2-Clause"
homepage = "https://dry-python.org/"
repository = "https://github.com/dry-python/mappers/"
documentation = "https://mappers.readthedocs.io/"
authors = [
"Artem Malyshev <proofit404@gmail.com>",
"Nikita Sobolev <mail@sobolevn.me>",
]
keywords = [
"dry-python",
"mappers",
"ddd",
"domain driven design",
"type-safety",
"django models",
"attrs",
"ORM",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development",
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
mkdocs = { version = "*", optional = true }
mkdocs-material = { version = "*", optional = true }
[tool.poetry.extras]
mkdocs = ["mkdocs", "mkdocs-material"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
exclude = '''
/(
.tox
| migrations
)/
'''