-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ben Johnson <ben@binarylogic.com>
- Loading branch information
1 parent
0e747af
commit b499c32
Showing
5 changed files
with
29 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.pytest.ini_options] | ||
log_level = "DEBUG" | ||
testpaths = "tests" | ||
norecursedirs = ".git" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[metadata] | ||
name = trinnov-altitude | ||
version = attr: trinnov_altitude.__version__ | ||
description = "Python client for interfacing with the Trinnov Altitude processor." | ||
long_description = file: README.rst | ||
long_description_content_type = text/markdown | ||
url = https://github.com/binarylogic/py-trinnov-altitude | ||
author = Ben Johnson | ||
author_email = ben@binarylogic.com | ||
licence = Apache 2.0 | ||
classifiers = | ||
Intended Audience :: Developers | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
Topic :: Software Development :: Libraries | ||
Topic :: Home Automation |
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,27 +1,3 @@ | ||
"""This module provides setup for pip.""" | ||
import setuptools | ||
|
||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="trinnov-altitude", | ||
version="0.1.0", | ||
url="https://github.com/binarylogic/py-trinnov-altitude", | ||
license="Apache 2.0", | ||
author="Ben Johnson", | ||
author_email="ben@binarylogic.com", | ||
description="Python client for interfacing with the Trinnov Altitude processor", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Home Automation", | ||
], | ||
) | ||
setuptools.setup() |
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