This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
57 lines (50 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
from os import path
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 = [
"datapipelines>=1.0.7",
"merakicommons>=1.0.7",
"cassiopeia",
"Pillow",
"arrow",
"requests",
"Django>=3.0.1",
"wheel",
]
# Require python 3.6
if sys.version_info.major != 3 and sys.version_info.minor != 6:
sys.exit("'django-cassiopeia' requires Python >= 3.6!")
setup(
name="django-cassiopeia",
version="2.1.1",
author="Paaksing",
author_email="[email protected]",
url="https://github.com/paaksing/django-cassiopeia",
description="Django Integration of the Riot Games Developer API Wrapper 'cassiopeia'",
long_description=long_description,
long_description_content_type='text/markdown',
keywords=["Django", "LoL", "League of Legends", "Riot Games", "API", "REST"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Real Time Strategy",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Framework :: Django :: 3.0",
],
license="MIT",
packages=find_packages(exclude=("tests",)),
zip_safe=True,
install_requires=install_requires,
include_package_data=True
)