-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
70 lines (58 loc) · 1.6 KB
/
setup.cfg
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
[metadata]
name = starlette-web
version = 0.0.2
description = Simple components for starlette-based web-app
long_description = file: README.md
url = https://github.com/DmitryBurnaev/starlette-web
author = Dmitry Burnaev
author_email = [email protected]
license = MIT License
classifiers =
Framework :: Starlette
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
[options]
python_requires = >=3.10
packages = find:
include_package_data = True
install_requires =
anyio>=3.6.2,<3.7
starlette>=0.25,<0.26
webargs-starlette>=2.1,<2.2
python-multipart==0.0.6 # required by starlette dependencies
websockets>=10.4,<10.5
asyncpg>=0.27,<0.28
sqlalchemy>=2.0.2,<2.1
Jinja2>=3.1,<3.2
PyJWT>=2.6,<2.7
httpx>=0.23,<0.24
redis>=4.3,<4.4
sentry-sdk>=1.10,<1.11
python-dotenv>=0.21,<0.22
traceback-with-variables>=2.0.4,<2.1
dependency_links =
https://github.com/dolamroth/py_win_task_scheduler/archive/refs/heads/main.zip#egg=py_win_task_scheduler
[options.packages.find]
exclude =
tests
[options.extras_require]
apispec =
apispec>=6.0,<6.1
pyyaml>=6.0,<6.1
openapi-spec-validator>=0.5.5,<0.6
admin =
starlette-admin>=0.5.3,<0.6
scheduler =
filelock>=3.9.0,<3.10 # TODO: move to general requirements
croniter>=1.3.8,<1.4
py_win_task_scheduler; sys_platform == 'win32'
develop =
black~=22.10.0
testing =
pytest>=6.2,<6.3
coverage>=6.2,<6.3
alembic>=1.9.4,<1.10
psycopg2-binary>=2.9,<2.10
requests>=2.28,<2.29
flake8>=4.0,<4.1