forked from reahl/reahl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
98 lines (95 loc) · 2.04 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = [
"setuptools >= 68",
"wheel",
"setuptools-git >= 1.1",
"pytest-runner"
]
build-backend = "setuptools.build_meta"
[project]
name = "reahl"
version = "7.0.2"
description = "The Reahl web framework."
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies = []
authors = [
{name = "Iwan Vosloo", email = "iwan@reahl.org"},
{name = "Craig Sparks", email = "craig@reahl.org"}
]
[project.optional-dependencies]
all = [
"reahl-component>=7.0,<7.1",
"reahl-web>=7.0,<7.1",
"reahl-mailutil>=7.0,<7.1",
"reahl-sqlalchemysupport>=7.0,<7.1",
"reahl-web-declarative>=7.0,<7.1",
"reahl-domain>=7.0,<7.1",
"reahl-domainui>=7.0,<7.1",
"reahl-postgresqlsupport>=7.0,<7.1",
"reahl-sqlitesupport>=7.0,<7.1",
"reahl-mysqlsupport>=7.0,<7.1",
"reahl-dev>=7.0,<7.1",
"reahl-webdev>=7.0,<7.1",
"reahl-browsertools>=7.0,<7.1",
"reahl-stubble>=7.0,<7.1",
"reahl-tofu>=7.0,<7.1",
"reahl-doc>=7.0,<7.1",
"reahl-commands>=7.0,<7.1",
"reahl-paypalsupport>=7.0,<7.1"
]
web = [
"reahl-component>=7.0,<7.1",
"reahl-web>=7.0,<7.1",
"reahl-mailutil>=7.0,<7.1"
]
sqlite = [
"reahl-sqlitesupport>=7.0,<7.1"
]
postgresql = [
"reahl-postgresqlsupport>=7.0,<7.1"
]
mysql = [
"reahl-mysqlsupport>=7.0,<7.1"
]
declarative = [
"reahl-sqlalchemysupport>=7.0,<7.1",
"reahl-web-declarative>=7.0,<7.1",
"reahl-domain>=7.0,<7.1",
"reahl-domainui>=7.0,<7.1"
]
dev = [
"reahl-dev>=7.0,<7.1",
"reahl-webdev>=7.0,<7.1",
"reahl-stubble>=7.0,<7.1",
"reahl-tofu>=7.0,<7.1",
"reahl-browsertools>=7.0,<7.1"
]
doc = [
"reahl-doc>=7.0,<7.1"
]
component = [
"reahl-component>=7.0,<7.1"
]
browsertools = [
"reahl-browsertools>=7.0,<7.1"
]
stubble = [
"reahl-stubble>=7.0,<7.1"
]
tofu = [
"reahl-tofu>=7.0,<7.1"
]
[tool.setuptools.packages.find]
exclude = [
"etc",
"build",
"dist"
]