Closed kbickar closed 6 years ago
tag the sense API so it can be put on pypi?
git tag 0.1 -m "first release" git push --tags origin master
I can submit it then or if you want to, follow the instructions on http://peterdowns.com/posts/first-time-with-pypi.html if you want to submit it, here's a setup.py file:
from distutils.core import setup setup( name = 'sense-energy', packages = ['sense-energy'], install_requires=[ 'requests', 'websocket-client', ], version = '0.1', description = 'API for the Sense Energy Monitor', author = 'scottbonline', author_email = 'scottbonline@gmail.com?', url = 'https://github.com/scottbonline/sense', download_url = 'https://github.com/scottbonline/sense/archive/0.1.tar.gz', keywords = ['sense', 'energy', 'api'], classifiers = [], )
yup, I'll do that tonight. Thanks for all the help on this, much appreciated
https://pypi.python.org/pypi?:action=display&name=sense-energy&version=0.2
tag the sense API so it can be put on pypi?
I can submit it then or if you want to, follow the instructions on http://peterdowns.com/posts/first-time-with-pypi.html if you want to submit it, here's a setup.py file: