-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 838 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
"""Setup for pyoctoprintapi"""
# https://jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/
# http://peterdowns.com/posts/first-time-with-pypi.html
# pip install -e .
# Upload to PyPI Live
# python setup.py sdist bdist_wheel
# twine upload dist/pyoctoprintapi-* --skip-existing
from setuptools import setup
setup(
name="pyapcsc",
packages=["pyapcsc"],
version="0.1.8",
description="An asynchronous Python library for communicating with the APC Smart Connect API",
author="Ryan Fleming",
author_email="rfleming71@users.noreply.github.com",
license="MIT",
url="https://github.com/rfleming71/pyapcsc",
install_requires=["aiohttp"],
keywords=["apc", "smartconnect", "homeassistant"],
classifiers=["Natural Language :: English", "Programming Language :: Python :: 3"],
)