|
- #!/usr/bin/env python
-
- from setuptools import setup
-
- setup(name='solardash',
- version='0.1.0',
- description='Dashboard for monitoring a solar system',
- author='John-Mark Gurney',
- author_email='jmg@funkthat.com',
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'License :: OSI Approved :: BSD License',
- ],
- url='https://www.funkthat.com/gitea/jmg/solardash',
- packages=[ 'solardash', ],
- install_requires=[
- 'RainEagle @ git+https://www.funkthat.com/gitea/jmg/RainEagle.git',
- ],
- extras_require = {
- 'dev': [ 'coverage' ],
- },
- entry_points={
- 'console_scripts': [
- ]
- }
- )
|