forked from joealcorn/xbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.23 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
from setuptools import setup, find_packages
import xbox
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='xbox',
version=xbox.__VERSION__,
url='https://github.com/buttscicles/xbox/',
author='Joe Alcorn',
author_email='[email protected]',
description="A wrapper around Microsoft's undocumented Xbox One APIs",
long_description=readme,
packages=find_packages(exclude=["tests"]),
package_data={
'xbox.vendor.requests': ['*.pem'],
},
keywords='xbox one microsoft',
tests_require=['pytest==2.6.2', 'tox==1.7.3'],
license='MIT',
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
],
)