forked from scottbonline/sense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
42
from setuptools import setup
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pysense',
packages=['pysense'],
install_requires=[
'arrow',
'click',
'colorama;platform_system=="Windows"',
'confuse',
'requests',
'sentry-sdk',
'websocket-client',
],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='API for the Sense Energy Monitor, forked from the sense '
'project by scottbonline/sense',
long_description=long_description,
long_description_content_type="text/markdown",
author='Andrew Sawyers',
author_email='andrew@sawdog.com',
url='https://github.com/sawdog/pysense',
keywords=['sense',
'energy',
'monitor',
'api',
'pytest',
'python3',
'python2'],
classifiers = [],
entry_points='''
[console_scripts]
sensecli=pysense.cli:cli
''',
)