-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (64 loc) · 2.09 KB
/
setup.py
File metadata and controls
66 lines (64 loc) · 2.09 KB
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
from setuptools import find_packages
from setuptools import setup
# Read the long description from README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
_ = setup(
name="codeforcespy",
version="1.2.1",
author="Xsyncio",
description=(
"A high-performance and type-safe Python library for seamless interaction "
"with the Codeforces API. Supports both asynchronous and synchronous client "
"handlers, enabling developers to choose the best approach for their needs."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/xsyncio/codeforcespy",
packages=find_packages(include=["codeforcespy", "codeforcespy.*"]),
include_package_data=True,
install_requires=[
"httpx>=0.23.0",
"msgspec>=0.18.0",
],
extras_require={
"dev": [
"ruff",
"pytest",
"mypy",
"basedpyright",
"respx",
"build",
],
},
python_requires=">=3.9",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Typing :: Typed",
],
keywords=[
"python",
"codeforces",
"api",
"wrapper",
"async",
"sync",
"type-safe",
"competitive-programming",
],
project_urls={
"Bug Tracker": "https://github.com/xsyncio/codeforcespy/issues",
"Documentation": "https://github.com/xsyncio/codeforcespy",
"Source": "https://github.com/xsyncio/codeforcespy",
},
)