forked from dahlb/blueair_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.19 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
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
VERSION = "1.8.4"
# Setting up
setup(
name="blueair_api",
version=VERSION,
author="Brendan Dahl",
author_email="[email protected]",
description="Blueair Api Wrapper",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=["aiohttp>=3.8.1"],
keywords=["blueair", "api"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
],
python_requires=">=3.9, <4",
url="https://github.com/dahlb/blueair_api",
project_urls={
"Bug Reports": "https://github.com/dahlb/blueair_api/issues",
"Source": "https://github.com/dahlb/blueair_api",
},
)