-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
26 lines (23 loc) · 858 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
from setuptools import setup, find_packages
with open('LICENSE') as f:
license = f.read()
with open('README.rst') as f:
readme = f.read()
setup(
name="reeprotocol",
version="0.0.dev0",
author="Javier de la Puente",
author_email="[email protected]",
description=("Library to connect and query information about electric"
"meters following REE (Red Eléctrica Española) protocol."),
license=license,
keywords="REE electric meters IEC 870-5-102",
url="http://www.javierdelapuente.com",
packages=find_packages(exclude=('tests', 'docs', 'examples')),
long_description=readme,
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: Communications :: FIDO :: IEC 870-5-102",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
)