-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
102 lines (96 loc) · 2.7 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
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
99
100
101
102
[metadata]
name = turbo-sticks
version = attr: turbo_sticks.__version__
author = David Salvisberg
author_email = dave@daverball.com
description = TURBO Sticks is an authentication bridge between various TURBO services.
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD 2-Clause License
url = https://github.com/ffsit/turbo-sticks
project_urls =
Bug Tracker = https://github.com/ffsit/turbo-sticks/issues
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
include_package_data = True
python_requires = >=3.10
install_requires =
aiodns ==3.1.1
aiohttp ==3.9.3
async-timeout ==4.0.3
certifi ==2024.2.2
cffi ==1.16.0
charset-normalizer ==3.3.2
discord.py ==2.3.2
cryptography ==42.0.5
gevent ==24.2.1
greenlet ==3.0.3
idna ==3.6
oauthlib ==3.2.2
redis ==4.6.0
requests ==2.31.0
requests-oauthlib ==1.3.1
psycopg[c] ==3.1.18
psycopg-pool ==3.2.1
pydantic ==2.6.3
pydantic-core ==2.16.3
pydantic-settings ==2.2.1
PyYAML ==6.0.1
typing_extensions ==4.10.0
urllib3 ==2.2.1
zope.event ==5.0
zope.interface ==6.2
[options.extras_require]
tests =
bandit[toml] ==1.7.7
coverage[toml] ==7.4.3
dpytest ==0.7.0
flake8 ==7.0.0
flake8-bugbear == 24.2.6
flaky ==3.7.0
mypy ==1.8.0
pre-commit ==3.6.2
pytest ==8.0.2
pytest-asyncio ==0.23.5
pytest-cov ==4.1.0
pytest-gevent ==1.1.0
pytest-postgresql ==5.1.0
pytest-redis ==3.0.2
time-machine ==2.13.0
types-gevent ==24.2.0.20240301
types-greenlet ==3.0.0.20240106
types-oauthlib ==3.2.0.20240217
types-psutil ==5.9.5.20240205
types-pyOpenSSL ==24.0.0.20240228
types-pyYAML ==6.0.12.12
types-redis ==4.6.0.20240218
types-requests ==2.31.0.20240218
types-requests-oauthlib ==1.3.0.20240106
types-uWSGI ==2.0.0.20240106
uwsgi =
uwsgi ==2.0.24
[options.package_data]
turbo_sticks =
templates/blocks/*.html
templates/pages/*.html
py.typed
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
sticks-cron = turbo_sticks_scripts.sticks_cron:main
sticks-bot = turbo_sticks_scripts.sticks_bot:main
sticks-server = turbo_sticks_scripts.sticks_server:main
retrieve-discord-ids = turbo_sticks_scripts.retrieve_discord_ids:main
retrieve-patreon-ids = turbo_sticks_scripts.retrieve_patreon_ids:main
[flake8]
extend-select = B901,B903,B904,B908