-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.23 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
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#example
[tool.portray]
output_dir = "documentation_website"
modules = ["trim"]
port = 8001
[project]
name = "django-trim"
# version = "0.1a"
authors = [
{ name="Strangemother", email="[email protected]" },
]
description = "Django trim is a facade to the common features of Django providing a layer of sugar for all those daily components."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {text='MIT'}
dynamic = ['version']
# dependencies
# dynamic
# entry-points
# gui-scripts
# keywords
# license
# maintainers
# optional-dependencies
# scripts
# urls
[tool.setuptools.package-data]
trim = ["**/*.js", "**/*.css","**/*.html"]
[project.scripts]
trim = 'trim.cli.primary:main'
trim-admin = 'trim.cli.primary:main_admin'
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "http://github.com/strangemother/django-trim"
"Bug Tracker" = "http://github.com/strangemother/django-trim/issues"