-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (25 loc) · 844 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='thermoworks_smoke',
version='0.1.8',
url='https://github.com/nhorvath/python-thermoworks-smoke',
description='Pull data for your thermoworks smoke thermometer',
long_description=long_description,
long_description_content_type="text/markdown",
author='nhorvath',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='Thermoworks',
packages=find_packages(exclude=['tests']),
install_requires=[
'pyrebase4>=4.3.0'
]
)