-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.38 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
[build-system]
requires = ["setuptools >= 67.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src/"]
include = ["sdh.forms"]
[project]
name = "sdh.forms"
description = "sdh.forms library wrap Django forms with custom template-way render solution."
version = "2.4.1"
dependencies = [
"Django>=3.2"
]
requires-python = ">= 3.8"
license = {file = 'LICENSE'}
authors = [
{name = "Viacheslav Vic Bukhantsov", email = "[email protected]"},
{name = "Borys Vorona", email="[email protected]"},
{name = "Alexey Babarykin", email="[email protected]"},
{name = "Oleg Kozij", email="[email protected]"},
]
maintainers = [
{name = "Viacheslav Vic Bukhantsov", email = "[email protected]"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries'
]
[project.urls]
Repository = "https://github.com/sdh-global/sdh-forms"