-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (28 loc) · 900 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
34
import os
from setuptools import setup
from pystove.version import __version__
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name="pystove",
version=__version__,
author="Milan van Nugteren",
author_email="[email protected]",
description=("A library to interface with HWAM wood burning stoves."),
license="GPLv3+",
keywords="stove hwam smartcontrol",
url="https://github.com/mvn23/pystove",
packages=["pystove"],
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=[
"aiohttp",
"defusedxml",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 or later " "(GPLv3+)",
],
)