-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (28 loc) · 899 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
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import os
import sys
import setuptools
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
with open("README.md") as fh:
long_description = fh.read()
setuptools.setup(
name="pysensorpush",
version="0.1.7",
packages=["pysensorpush"],
description="Python interface for the SensorPush API",
# long_description=long_description,
url="https://github.com/rsnodgrass/pysensorpush",
author="Ryan Snodgrass",
author_email="[email protected]",
license="Apache Software License",
install_requires=["requests>=2.0"],
keywords=["sensorpush", "home automation", "humidity", "temperature"],
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)