-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 813 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '0.1.1'
author = 'David-Leon Pohl'
author_email = 'David-Leon.Pohl@rub.de'
setup(
name='pilight',
version=version,
description='A pure python module to connect to a pilight daemon to send and receive commands.',
url='https://github.com/DavidLP/pilight',
license='MIT License',
long_description='',
author=author,
maintainer=author,
author_email=author_email,
maintainer_email=author_email,
packages=find_packages(),
include_package_data=True, # Accept all data files and directories matched by MANIFEST.in or found in source control
keywords=['pilight', '433', 'light'],
platforms='any'
)