-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (26 loc) · 882 Bytes
/
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
[build-system]
requires = ['setuptools>=61.0.0']
build-backend = 'setuptools.build_meta'
[project]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
name = "django-hyperview"
version = "0.0.2"
authors = [{ name = "Rami", email = "[email protected]" }]
description = "Django extensions for Hyperview mobile apps"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["django"]
[tool.setuptools]
include-package-data = true
packages = ["django_hv", "django_hv.templatetags", ]
[tool.setuptools.package-data]
"django_hv.templates" = ["*.xml"]
[project.urls]
"Homepage" = "https://github.com/ramiboutas/django-hyperview"
"Bug Tracker" = "https://github.com/ramiboutas/django-hyperview/issues"