forked from Ozon3Org/Ozon3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.15 KB
/
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
import setuptools
setuptools.setup(
name="ozon3",
author="Milind Sharma",
author_email="[email protected]",
keywords=["aqi", "air quality", "world air quality", "api", "open source"],
description="A package to get air quality data using the WAQI API",
license="GPLv3+",
url="https://github.com/Milind220/Ozone",
download_url="https://github.com/Milind220/Ozone/archive/refs/tags/v1.0.3.tar.gz",
version="1.0.3",
packages=setuptools.find_packages(),
install_requires=[
"numpy; python_version>='3'",
"pandas; python_version>='3'",
"requests; python_version>='3'",
],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)