This repository was archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
41 lines (37 loc) · 1.34 KB
/
setup.py
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
import setuptools
__version__ = "1.3.0"
with open("README.md", "r") as fh:
long_description = fh.read()
install_requirements = [
"requests==2.27.1",
]
setuptools.setup(
name="python-blizzardapi",
version=__version__,
author="Trevor Phillips",
author_email="trevorphillipscoding@gmail.com",
description="python-blizzardapi is a client library for Blizzard's APIs.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/trevorphillips/python-blizzardapi",
packages=setuptools.find_packages(),
install_requires=install_requirements,
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)