-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 825 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 825 Bytes
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
from pathlib import Path
from setuptools import setup
HERE = Path(__file__).resolve().parent
README = (HERE / "README.rst").read_text()
setup(
name = "clashroyale.py",
version = "1.0.1",
description = "A basic API wrapper for Clash Royale.",
long_description = README,
long_description_content_type = "text/x-rst",
url = "https://github.com/Ombucha/clashroyale.py",
author = "Omkaar",
author_email = "omkaar.nerurkar@gmail.com",
license = "MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
python_requires='>= 3.8.0',
packages = ["clashroyale"],
include_package_data = True,
install_requires = ["requests"]
)