scottbonline / sense

Sense Energy Monitor API
MIT License
174 stars 45 forks source link

Tag and submit to pypi #4

Closed kbickar closed 6 years ago

kbickar commented 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 = [],
)
scottbonline commented 6 years ago

yup, I'll do that tonight. Thanks for all the help on this, much appreciated

scottbonline commented 6 years ago

https://pypi.python.org/pypi?:action=display&name=sense-energy&version=0.2