-
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.
- Loading branch information
Showing
3 changed files
with
59 additions
and
0 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,11 @@ | ||
aiohttp==3.0.1 | ||
async-timeout==2.0.0 | ||
attrs==17.4.0 | ||
certifi==2018.1.18 | ||
chardet==3.0.4 | ||
idna==2.6 | ||
idna-ssl==1.0.0 | ||
multidict==4.1.0 | ||
netifaces==0.10.6 | ||
urllib3==1.22 | ||
yarl==1.1.0 |
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,15 @@ | ||
[bdist_wheel] | ||
universal=0 | ||
|
||
[pep8] | ||
max-line-length=79 | ||
|
||
[flake8] | ||
ignore = E722 | ||
exclude = | ||
.git, | ||
.idea, | ||
build, | ||
dist, | ||
venv | ||
max-line-length=79 |
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,33 @@ | ||
from codecs import open | ||
from os import path | ||
from setuptools import setup | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="sisyphus-control", | ||
version="0.1", | ||
description="Control your Sisyphus kinetic art tables " | ||
"(sisyphus-industries.com)", | ||
long_description=long_description, | ||
url="https://github.com/jkeljo/sisyphus-control", | ||
author="Jonathan Keljo", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Topic :: Home Automation", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
keywords="sisyphus", | ||
packages=["sisyphus/control"], | ||
install_requires=[ | ||
"aiohttp", | ||
"netifaces", | ||
], | ||
python_requires="~=3.6", | ||
) |