Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Added revolutbot.py to the Pypi package
Browse files Browse the repository at this point in the history
  • Loading branch information
tducret committed Jul 16, 2018
1 parent a6a5d7a commit afcc60a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -57,6 +57,6 @@ If you don't have a Revolut token yet, the tool will allow you to obtain one.
- [x] Create the Docker image
- [x] Implement the function to get the last transactions
- [ ] Document revolutbot.py
- [ ] Add revolutbot to the revolut Pypi package
- [x] Add revolutbot to the revolut Pypi package
- [ ] Create a RaspberryPi Dockerfile for revolutbot (to check if rates grows very often)
- [ ] Improve coverage for revolutbot
14 changes: 7 additions & 7 deletions setup.py
Expand Up @@ -7,22 +7,23 @@

# Based on http://peterdowns.com/posts/first-time-with-pypi.html

__version__ = '0.0.4' # Should match with __init.py__
_NOM_PACKAGE = 'revolut'
__version__ = '0.0.5' # Should match with __init.py__
_NAME = 'revolut'
_PACKAGE_LIST = ['revolut', 'revolut_bot']
_URL_GITHUB = 'https://github.com/tducret/revolut-python'
_DESCRIPTION = 'Package to get account balances and do operations on Revolut'
_MOTS_CLES = ['api', 'revolut', 'bank', 'parsing', 'cli',
'python-wrapper', 'scraping', 'scraper', 'parser']
_SCRIPTS = ['revolut_cli.py']
_SCRIPTS = ['revolut_cli.py', 'revolutbot.py']
# To delete here + 'scripts' dans setup()
# if no command is used in the package

install_reqs = parse_requirements('requirements.txt', session='hack')
requirements = [str(ir.req) for ir in install_reqs]

setup(
name=_NOM_PACKAGE,
packages=[_NOM_PACKAGE],
name=_NAME,
packages=_PACKAGE_LIST,
package_data={},
scripts=_SCRIPTS,
version=__version__,
Expand All @@ -47,8 +48,7 @@
# ------------------------------------------
# Make sure everything was pushed (with a git status)
# (or git commit --am "Comment" and git push)
# git tag 0.0.4 -m "Removed device-id option from CLI tool \
# and implemented function to obtain token"
# git tag 0.0.5 -m "Added revolutbot"
# git push --tags

# Do a generation test on the pypi test repository
Expand Down

0 comments on commit afcc60a

Please sign in to comment.