-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (31 loc) · 1.04 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
from setuptools import setup
from pathlib import Path
readme = open(Path(__file__).parent / 'README.md', encoding='utf8').read()
setup(
name = 'PiIR',
description = 'IR remote control for Raspberry Pi',
long_description = readme,
long_description_content_type = 'text/markdown',
author = 'Takeshi Sone',
author_email = 'takeshi.sone@gmail.com',
install_requires = ['pigpio'],
python_requires = '>= 3.6',
url = 'https://github.com/ts1/PiIR',
license = 'MIT',
packages = ['piir', 'piir.remotes'],
entry_points = {
'console_scripts': ['piir=piir.cli:main'],
},
tests_require = ['pytest'],
setup_requires = ['pytest-runner'],
classifiers = [
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Topic :: System :: Hardware',
'Topic :: Home Automation',
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
],
)