forked from lona-web-org/lona-picocss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (55 loc) · 1.35 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
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.2"
name = "lona-picocss"
description = "Pico.css bindings for Lona"
authors = [
{ name="Florian Scherf", email="mail@florianscherf.de" },
]
license = { file="LICENSE.txt" }
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.7"
dependencies = [
"lona>=1.12.1",
]
[project.optional-dependencies]
packaging = [
"build",
"twine",
]
testing = [
"tox",
"coverage==7.1.0",
"pytest==7.2.1",
"pytest-aiohttp==1.0.4",
"playwright==1.30.0",
]
[project.urls]
"Homepage" = "https://github.com/lona-web-org/lona-picocss"
"Repository" = "https://github.com/lona-web-org/lona-picocss"
"Bug Tracker" = "https://github.com/lona-web-org/lona-picocss/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["lona_picocss*"]
[tool.setuptools.package-data]
"lona_picocss.static" = ["**"]
"lona_picocss.templates" = ["**"]
[tool.setuptools.exclude-package-data]
"*" = [
".*",
"~*",
"*.swp",
"*.pyc",
]