-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.04 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
PACKAGE_NAME = 'pyntensiswmp'
HERE = os.path.abspath(os.path.dirname(__file__))
VERSION = '0.0.1'
PACKAGES = find_packages(exclude=['tests', 'tests.*', 'dist', 'build'])
REQUIRES = []
setup(
name=PACKAGE_NAME,
version=VERSION,
license='MIT License',
url='https://github.com/pascalhahn/pyntensiswmp',
download_url='https://github.com/pascalhahn/pyntensiswmp/archive/'+VERSION+".tar.tar.gz",
author='Pascal Hahn',
author_email='ph@lxd.bz',
description='Intensis WMP Connector',
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
keywords=['wmp', 'intensis', 'smarthome'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Home Automation'
],
)