-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
60 lines (57 loc) · 1.71 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
[metadata]
name = rlapi
version = file: rlapi/VERSION
description = Async ready API wrapper for Rocket League API
license = Apache License 2.0
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
author = Jakub Kuczys (Jackenmen)
url = https://github.com/Jackenmen/rlapi
project_urls =
Documentation = https://rlapi.readthedocs.io
Donate on Patreon = https://www.patreon.com/Jackenmen
Issue Tracker = https://github.com/Jackenmen/rlapi/issues
Source Code = https://github.com/Jackenmen/rlapi
classifiers =
# List at https://pypi.org/pypi?%3Aaction=list_classifiers
Development Status :: 4 - Beta
Framework :: AsyncIO
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Internet
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
Typing :: Typed
[options]
include_package_data = True
packages = find_namespace:
python_requires = >=3.8
install_requires =
aiohttp>=3.5.4,<4.0
lxml>=4.4.2,<6.0
[options.extras_require]
tests =
mypy==1.12.1
docs =
sphinx>=4.5.0,<5.0
sphinxcontrib-trio>=1.1.2,<1.2
sphinx_rtd_theme
lint =
flake8>=4.0.1,<5.0
style =
black>22.1.0,<23
isort==5.10.1,<6
[options.packages.find]
include =
rlapi
rlapi.*