-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.14 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
[project]
name = "anemic"
version = "0.0.1dev0"
description = ""
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
keywords = ["web", "pyramid", "cli", "di", "ioc"]
[[project.authors]]
name = "Antti Haapala"
email = "antti.haapala@interjektio.fi"
[project.optional-dependencies]
dev = [
"pytest",
"pre-commit",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["anemic.*"]
namespaces = false