First Upload
This commit is contained in:
36
setup.py
Normal file
36
setup.py
Normal file
@@ -0,0 +1,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'
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user