-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
51 lines (44 loc) · 1.7 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
#!/usr/bin/env python
"""Setup for pyps4-2ndscreen."""
from setuptools import find_packages, setup
version = {}
with open("./pyps4_2ndscreen/__version__.py") as f:
exec(f.read(), version)
MIN_PY_VERSION = '.'.join(map(str, version['REQUIRED_PYTHON_VER']))
REQUIRES = list(open('requirements.txt'))
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Console :: Curses',
'Framework :: AsyncIO',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Games/Entertainment',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware',
]
with open('README.rst') as f:
readme = f.read()
setup(name='pyps4_2ndscreen',
version=version['__version__'],
description='PS4 2nd Screen Python Library',
long_description=readme,
long_description_content_type='text/markdown',
author='ktnrg45',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
url='https://github.com/ktnrg45/pyps4-2ndscreen',
license='LGPLv2+',
classifiers=CLASSIFIERS,
keywords='playstation sony ps4 2nd screen 2ndscreen',
install_requires=REQUIRES,
python_requires='>={}'.format(MIN_PY_VERSION),
test_suite='tests',
include_package_data=True,
entry_points={"console_scripts": ["pyps4-2ndscreen = pyps4_2ndscreen.__main__:cli"]}
)