-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (25 loc) · 894 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
29
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pyecowitt',
version='0.22',
description='Module to communicate with the Ecowitt procotol',
long_description='Module to communicate with the Ecowitt protocol',
url='https://github.com/garbled1/pyecowitt',
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',
author_email='[email protected]',
license='Apache 2.0',
packages=['pyecowitt'],
install_requires=[
'aiohttp',
],
include_package_data=True,
zip_safe=False)