-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (25 loc) · 917 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='PyDreamScreen',
version='0.0.6',
packages=find_packages(),
author='Gregory Dosh',
author_email='[email protected]',
description='Python device discovery and manipulation for DreamScreen HD, '
'4K, and SideKick devices.',
license='MIT',
url='https://github.com/GregoryDosh/pydreamscreen',
long_description=open('README.rst').read(),
include_package_data=True,
install_requires=list(r.strip() for r in open('requirements.txt')),
platforms='any',
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)