-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.47 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
# This pyproject.toml seems to work to build a new package
# when `setuptools==67.6.1` is installed.
[project]
name = "djaodjin-pages"
dynamic = ["version"]
description = "Django application for practices-based content"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
keywords = ["django", "cms"]
authors = [
{name = "The DjaoDjin Team", email = "[email protected]"}
]
maintainers = [
{name = "The DjaoDjin Team", email = "[email protected]"}
]
classifiers = [
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"bleach>=6.0.0",
"Django>=1.11",
"djangorestframework>=3.3.1",
"djaodjin-deployutils>=0.10.6",
"djaodjin-extended-templates>=0.4.5",
"mammoth>=1.6.0",
"markdownify>=0.11.6",
"Markdown>=3.4.1",
"python-dateutil>=2.8",
"requests>=2.22"
]
[project.urls]
repository = "https://github.com/djaodjin/djaodjin-pages"
documentation = "https://djaodjin-pages.readthedocs.io/"
changelog = "https://github.com/djaodjin/djaodjin-pages/changelog"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pages*"]
[tool.setuptools.package-data]
pages = [
'static/css/*',
'static/js/*',
'static/vendor/css/*',
'static/vendor/js/*',
'templates/pages/*.html',
'templates/pages/editables/*.html',
]
[tool.setuptools.dynamic]
version = {attr = "pages.__version__"}