-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 554 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (16 loc) · 554 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='herolabsapi',
version='0.5.0',
packages=['herolabsapi'],
url='https://github.com/markvader/herolabsapi',
license='MIT',
author='Mark Breen',
author_email='markjbreen@gmail.com',
description='Python Library for Hero Labs API (Sonic smart water shut off valve)',
long_description=long_description,
long_description_content_type="text/markdown",
)