-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ILMO"
description = "A library management tool."
authors = [
{name = "moanos", email = "[email protected]"},
]
maintainers = [
{name = "moanos", email = "[email protected]"},
]
keywords = ["matrix", "registration", "bot", "user", "registration", "API" ]
license = {text = "AGPL-3.0-or-later"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django",
]
dependencies = [
"Django",
"python-decouple",
"coverage",
"codecov",
"sphinx",
"sphinx-rtd-theme",
"gunicorn",
"djangorestframework",
"model_bakery",
"fontawesomefree",
"django-modeltranslation",
"django-registration",
"django-polymorphic",
"psycopg2-binary",
"whitenoise"
]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://hyteck.de"
documentation = "https://ilmo2.readthedocs.io/en/latest/"
repository = "https://github.com/moan0s/ILMO2/"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
ilmo-manage = 'ilmo.main:main'
[tool.setuptools.dynamic]
version = {attr = "ilmo.__version__"}
readme = {file = "README.rst"}