Solar Array and home energy dashboard.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
663 B

  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(name='solardash',
  4. version='0.1.0',
  5. description='Dashboard for monitoring a solar system',
  6. author='John-Mark Gurney',
  7. author_email='jmg@funkthat.com',
  8. classifiers=[
  9. 'Development Status :: 3 - Alpha',
  10. 'License :: OSI Approved :: BSD License',
  11. ],
  12. url='https://www.funkthat.com/gitea/jmg/solardash',
  13. packages=[ 'solardash', ],
  14. install_requires=[
  15. 'RainEagle @ git+https://www.funkthat.com/gitea/jmg/RainEagle.git',
  16. ],
  17. extras_require = {
  18. 'dev': [ 'coverage' ],
  19. },
  20. entry_points={
  21. 'console_scripts': [
  22. ]
  23. }
  24. )