forked from mvn23/pystove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 843 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 os
import sys
from setuptools import setup
sys.path[0:0] = ['pystove']
from version import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).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'),
install_requires=[
'aiohttp',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 or later "
"(GPLv3+)"
],
)