-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 878 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 find_packages, setup
with open("./README.md", "r") as f:
long_description = f.read()
setup(
name="AQIPython",
version="0.0.07",
description="A Multistandard python AQI calculator library ",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Spritan/AQIPython",
author="Spritan",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
"Programming Language :: Python",
"Operating System :: OS Independent",
],
# install_requires=["bson >= 0.5.10"],
extras_require={
"dev": ["twine>=4.0.2"],
},
# python_requires=">=3.10",
)