forked from WebThingsIO/gateway-addon-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 758 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 758 Bytes
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
"""A setuptools based setup module."""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file.
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gateway_addon',
version='0.2.0',
description='Bindings for Mozilla IoT Gateway add-ons',
long_description=long_description,
url='https://github.com/mozilla-iot/gateway-addon-python',
author='Michael Stegeman',
author_email='mrstegeman@gmail.com',
keywords='mozilla iot gateway addon add-on',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['nnpy'],
)