-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
36 lines (35 loc) · 1.11 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
import os
from setuptools import find_packages
from setuptools import setup
base_dir = os.path.dirname(__file__)
setup(
name='vuegraf',
version='1.7.2',
author='Jason Ertel',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/jertel/vuegraf',
description='Populate metrics from your Emporia Vue energy monitoring devices into an InfluxDB',
setup_requires='setuptools',
license='MIT',
project_urls={
"Documentation": "https://github.com/jertel/vuegraf",
"Source Code": "https://github.com/jertel/vuegraf",
"Discussion Forum": "https://github.com/jertel/vuegraf/discussions",
},
classifiers=[
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': ['vuegraf=vuegraf.vuegraf']
},
packages=find_packages(),
install_requires=[
'influxdb>=5.3.1',
'influxdb_client>=1.41.0',
'pyemvue>=0.18.4',
'argparse>= 1.4.0'
]
)