-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
49 lines (43 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ISS"
version = "0.0.1"
authors = [
{ name="Lanny", email="[email protected]" },
]
description = "Oldschool forum software"
readme = "docs/README.md"
requires-python = ">=3.7"
dependencies = [
"django ~= 3.2.20",
"pytz",
"pillow",
"psycopg2",
"lxml",
"requests",
"django-recaptcha2",
"email-normalize",
"bbcode",
"tripphrase",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.scripts]
manage = "ISS.manage:main"
[project.urls]
"Homepage" = "https://github.com/Lanny/ISS"
"Bug Tracker" = "https://github.com/Lanny/ISS/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.setuptools.package-data]
"ISS.static" = ["**/*"]
"ISS.support" = ["*"]
"ISS.templates" = ["**/*.bbc", "**/*.txt", "**/*.html", "**/*.css", "**/*.svg"]