1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
default_version = '2.0.0'
version = os.getenv('PUBLISH_VERSION', default_version)
setuptools.setup(
name='youless_api',
version=version,
description='A bridge for python to the YouLess sensor',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/gjong/youless-python-bridge',
author='G. Jongerius',
license='MIT',
packages=setuptools.find_packages(exclude=("test",)),
zip_safe=False)
|