forked from garbled1/pybalboa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (24 loc) · 896 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pybalboa',
version='0.99',
description='Module to communicate with a Balboa spa wifi adapter',
long_description='Module to communicate with a Balboa spa wifi adapter',
url='https://github.com/garbled1/pybalboa',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules'
],
author='Tim Rightnour, Nathan Spencer',
author_email='root@garbled.net',
license='Apache 2.0',
packages=['pybalboa'],
install_requires=[
],
include_package_data=True,
zip_safe=False)