-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 846 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 846 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
setup(
name='waqiasync',
version='1.1.0',
description='asyncio-friendly python API for aqicn.org',
long_description='asyncio-friendly python API for World Air Quality Index (http://aqicn.org). Requires Python 3.5+',
url='https://github.com/andrey-git/waqi-async',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.11',
],
keywords='waqi',
install_requires=['aiohttp', 'async_timeout'],
zip_safe=True,
author = 'andrey-git',
author_email = 'andrey-git@github.com',
packages=find_packages()
)