forked from bm1549/frigidaire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 857 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
30
31
32
33
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# Overridden by publish GH Action
version = "SNAPSHOT"
print("Using version " + version)
setuptools.setup(
name='frigidaire',
version=version,
author="Brian Marks",
description="Python API for the Frigidaire 2.0 App",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bm1549/frigidaire",
packages=setuptools.find_packages(),
install_requires=[
"certifi>=2020.12.5",
"chardet>=4.0.0",
"idna>=2.10",
"requests>=2.25.1",
"urllib3>=1.26.4",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)