-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
76 lines (71 loc) · 2.26 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
74
75
76
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
ignore-vcs = true
include = [
"assimilator"
]
[project]
name = "py_assimilator"
version = "1.3.1"
authors = [
{ name="Andrey Ivanov", email="[email protected]" },
]
maintainers = [
{ name="Andrey Ivanov", email="[email protected]" },
]
keywords = ["DDD", "Domain-driven design", "Database", "Events", "Architecture", "Patterns", "Backend"]
description = "The best Domain-driven design patterns for your projects"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Database",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Software Development :: Testing :: Acceptance",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pydantic >=1.6.2,<2.0.0",
]
[project.optional-dependencies]
alchemy = [
'SQLAlchemy>=2.0.0'
]
kafka = [
'kafka-python>=2.0.2'
]
redis = [
'redis>=4.4.0'
]
mongo = [
'pymongo>=4.3.3'
]
[project.urls]
'Documentation' = 'https://knucklesuganda.github.io/py_assimilator/'
'Github' = 'https://github.com/knucklesuganda/py_assimilator/'
'Youtube RU' = 'https://www.youtube.com/channel/UCSNpJHMOU7FqjD4Ttux0uuw'
'Youtube ENG' = 'https://www.youtube.com/channel/UCeC9LNDwRP9OfjyOFHaSikA'