-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 885 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (25 loc) · 885 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
29
from setuptools import setup
setup(
name='cr-py',
version='1.2.7',
description='A Python API wrapper for cr-api',
long_description='A Python API wrapper for cr-api',
url='https://github.com/kwugfighter/cr.py',
author='kwugfighter',
author_email='isaacli430@gmail.com',
license='MIT',
keywords=['cr', 'Clash Royale', 'CR API'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
packages=['cr_py'],
install_requires=['requests']
)