-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scuti"
version = "0.0.3"
authors = [
{ name = "Joan Valduvieco", email = "[email protected]" },
]
description = "A simple backend framework for building complex web applications. Inspired in CQS and DDD"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"injector ==0.20.1",
"plum-dispatch==1.7.4",
"uuid==1.30"
]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/examples",
"/docs",
"/test",
]
[tool.hatch.build.targets.wheel]
packages = ["scuti"]
[publish.index.repos.private]
url = "https://test.pypi.org/legacy/"
[project.urls]
"Homepage" = "https://github.com/jvalduvieco/scuti"
"Bug Tracker" = "https://github.com/jvalduvieco/scuti/issues"