-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (56 loc) · 1.68 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
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "falcon_limiter"
dist-name = "falcon-limiter"
author = "Zoltan Fedor"
author-email = "[email protected]"
home-page = "https://github.com/zoltan-fedor/falcon-limiter"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
requires = [
"falcon >=1.0.0",
"limits"
]
description-file = "README.md"
requires-python = ">=3.6"
[tool.flit.metadata.urls]
Documentation = "https://falcon-limiter.readthedocs.io/en/latest/"
[tool.flit.metadata.requires-extra]
test = [
"coredis",
"flit",
"pylibmc",
"pytest >=4.0.0",
"pytest-cov",
"pytest-pep8",
"pytest-xdist",
"pytest-xprocess",
"redis",
"tox",
"tox-pipenv-install"
]
doc = []
dev = []
all = []