-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (26 loc) · 975 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
27
28
29
from setuptools import setup
from os import path
package_dir = path.abspath(path.dirname(__file__))
with open(path.join(package_dir, 'README.md')) as readme:
long_description = readme.read()
setup(
name='py_irsend',
version='1.0.1',
packages=['py_irsend'],
url='https://github.com/ChristopherRogers1991/python-irsend',
license='GPLv3',
author='Christopher Rogers',
author_email='ChristopherRogers1991@gmail.com',
description="A simple wrapper for lirc's irsend. ",
long_description=long_description,
long_description_content_type="text/markdown",
keywords='lirc irsend',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
)