-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (42 loc) · 1.58 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (42 loc) · 1.58 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
#!/usr/bin/env python
import sys
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = ["aiohttp>=3.9"]
extras_require = {
"docs": ["mkdocs-material", "mkdocstrings-python", "black"],
"test": ["pytest>=8.3", "typeguard>=4.2"],
}
# Require python 3.12
if sys.version_info < (3, 12):
sys.exit("'pulsefire' requires Python >= 3.12")
setup(
name="pulsefire",
version="2.0.30",
author="Ian Huang",
url="https://github.com/ianhco/pulsefire",
description="A modern and flexible Riot Games Python SDK.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords=["Riot Games", "League of Legends", "Teamfight Tactics", "Valorant", "Legends of Runeterra", "API", "SDK", "asyncio"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.12",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
],
license="MIT",
packages=find_packages(exclude=("tests", "transpile")),
zip_safe=True,
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
)