-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
52 lines (47 loc) · 1.33 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
# This pyproject.toml seems to work to build a new package
# when `setuptools==67.6.1` is installed.
[project]
name = "djaodjin-survey"
description = "Django app for qualitative and quantitative surveys"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
keywords = ["survey", "assessment", "census"]
authors = [
{name = "The DjaoDjin Team", email = "help@djaodjin.com"}
]
maintainers = [
{name = "The DjaoDjin Team", email = "help@djaodjin.com"}
]
classifiers = [
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"Django>=2.2",
"djangorestframework>=3.9",
"monotonic>=1.1",
"python-dateutil>=2.2"
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/djaodjin/djaodjin-survey"
documentation = "https://djaodjin-survey.readthedocs.io/"
changelog = "https://github.com/djaodjin/djaodjin-survey/changelog"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["survey*"]
[tool.setuptools.package-data]
survey = [
'static/css/*',
'static/js/*',
'templates/survey/*',
'templates/survey/campaigns/*',
'templates/survey/matrix/*'
]
[tool.setuptools.dynamic]
version = {attr = "survey.__version__"}