-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
44 lines (41 loc) · 1.48 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
[tool.poetry]
name = "py-automapper"
version = "1.2.3"
description = "Library for automatically mapping one object to another"
authors = ["Andrii Nikolaienko <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/anikolaienko/py-automapper"
repository = "https://github.com/anikolaienko/py-automapper.git"
keywords = ["utils", "dto", "object-mapper", "mapping", "development"]
packages = [
{ include = "automapper" }
]
include = ["CHANGELOG.md", "LICENSE", "README.md"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "7.1.3"
tortoise-orm = "^0.19.2"
pydantic = "^1.10.2"
coverage = "^6.5.0"
SQLAlchemy = {version = "^1.4.41", extras = ["mypy"]}
mypy = "^0.982"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"