-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f395059
commit 01cb74d
Showing
2 changed files
with
28 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('requirements.txt') as f: | ||
with open("requirements.txt") as f: | ||
REQUIRED = f.read().splitlines() | ||
|
||
PROJECT_DESCRIPTION = ('Tools for studying Home-Assistant data.') | ||
PROJECT_LONG_DESCRIPTION = ('Home Assistant is an open-source ' | ||
'home automation platform running on Python 3. ' | ||
'This package provides a set of convenience ' | ||
'functions and classes to analyse the data ' | ||
'in your Home-Assistant database. ') | ||
PROJECT_DESCRIPTION = "Tools for studying Home-Assistant data." | ||
PROJECT_LONG_DESCRIPTION = ( | ||
"Home Assistant is an open-source " | ||
"home automation platform running on Python 3. " | ||
"This package provides a set of convenience " | ||
"functions and classes to analyse the data " | ||
"in your Home-Assistant database. " | ||
) | ||
|
||
setup( | ||
name='HASS-data-detective', | ||
version='1.0', | ||
packages=find_packages(exclude=('tests',)), | ||
url='https://github.com/robmarkcole/HASS-data-detective', | ||
keywords=['home', 'automation'], | ||
author='Robin Cole', | ||
author_email='[email protected]', | ||
name="HASS-data-detective", | ||
version="2.0", | ||
packages=find_packages(exclude=("tests",)), | ||
url="https://github.com/robmarkcole/HASS-data-detective", | ||
keywords=["home", "automation"], | ||
author="Robin Cole", | ||
author_email="[email protected]", | ||
description=PROJECT_DESCRIPTION, | ||
long_description=PROJECT_LONG_DESCRIPTION, | ||
install_requires=REQUIRED, | ||
license='MIT', | ||
license="MIT", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3"] | ||
"Programming Language :: Python :: 3", | ||
], | ||
) |