Skip to content

Commit

Permalink
Add packaging config
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeljo committed Feb 20, 2018
1 parent 61d1f05 commit 4aa2eb2
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
11 changes: 11 additions & 0 deletions requirements.txt
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
15 changes: 15 additions & 0 deletions setup.cfg
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
33 changes: 33 additions & 0 deletions setup.py
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",
)

0 comments on commit 4aa2eb2

Please sign in to comment.