Solar Array and home energy dashboard.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

28 rindas
682 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. 'aiohttp',
  16. 'RainEagle @ git+https://www.funkthat.com/gitea/jmg/RainEagle.git',
  17. ],
  18. extras_require = {
  19. 'dev': [ 'coverage' ],
  20. },
  21. entry_points={
  22. 'console_scripts': [
  23. ]
  24. }
  25. )