Skip to content

Commit e7ba8a3

Browse files
authored
Initial Commit
1 parent 721cd07 commit e7ba8a3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from setuptools import setup
2+
3+
4+
with open('LICENSE') as f:
5+
license = f.read()
6+
7+
setup(
8+
name='pymyq',
9+
version='0.0.1',
10+
description='Python package for controlling MyQ-Enabled Garage Door',
11+
author='Chris Campbell',
12+
author_email='[email protected]',
13+
url='https://github.com/arraylabs/pymyq',
14+
license=license,
15+
packages=['pymyq'],
16+
package_dir={'pymyq': 'pymyq'}
17+
)

0 commit comments

Comments
 (0)