forked from OpenXbox/xbox-webapi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (70 loc) · 2.06 KB
/
setup.py
File metadata and controls
73 lines (70 loc) · 2.06 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="xbox-webapi",
version="1.1.7",
author="OpenXbox",
description="A library to authenticate with Windows Live/Xbox Live and use their API",
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
license="GPL",
keywords="xbox one live api",
url="https://github.com/OpenXbox/xbox-webapi-python",
packages=[
'xbox.webapi',
'xbox.webapi.common',
'xbox.webapi.scripts',
'xbox.webapi.api',
'xbox.webapi.authentication',
'xbox.webapi.api.provider'
],
namespace_packages=['xbox'],
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
test_suite="tests",
install_requires=[
'requests',
'demjson',
'appdirs',
'urwid'
],
setup_requires=['pytest-runner'],
tests_require=[
'pytest',
'betamax'
],
extras_require={
'dev': [
'pip',
'bumpversion',
'wheel',
'watchdog',
'flake8',
'tox',
'coverage',
'Sphinx',
'twine',
'betamax',
'pytest',
'pytest-runner'
],
},
entry_points={
'console_scripts': [
'xbox-auth-via-browser=xbox.webapi.scripts.browserauth:main',
'xbox-authenticate=xbox.webapi.scripts.authenticate:main',
'xbox-auth-tui=xbox.webapi.scripts.tui:main',
'xbox-searchlive=xbox.webapi.scripts.search:main',
'xbox-change-gt=xbox.webapi.scripts.change_gamertag:main'
]
}
)