forked from juntagrico/juntagrico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.8 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>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "juntagrico"
description = "juntagrico is a management platform for community gardens and vegetable cooperatives."
authors = [
{name = "juntagrico", email = "[email protected]"},
]
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.8"
dependencies = [
"Django~=4.2.0",
"django-admin-sortable2~=2.1.10",
"django-crispy-forms~=1.14.0",
"django-impersonate~=1.9.1",
"django-polymorphic~=3.1.0",
"django-richtextfield~=1.6.1",
"django-import-export~=3.3.1,<3.3.7",
"icalendar~=5.0.0",
"schwifty==2023.6.0",
"xhtml2pdf==0.2.15",
"XlsxWriter==3.1.4",
"python-dateutil~=2.8.2",
"fontawesomefree~=6.4.2",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8 ",
"Programming Language :: Python :: 3.9 ",
"Programming Language :: Python :: 3.10 ",
"Programming Language :: Python :: 3.11 ",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://www.juntagrico.org"
Issues = "https://github.com/juntagrico/juntagrico/issues"
Documentation = "https://juntagrico.readthedocs.io"
[tool.setuptools.packages.find]
include = ['juntagrico', 'juntagrico.*']
[tool.setuptools.dynamic]
version = {attr = "juntagrico.__version__"}
[tool.ruff.lint]
select = ["E", "F", "B"]
ignore = ["E501"]