Skip to content

Commit

Permalink
changed to pypi format
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoberfield committed Mar 14, 2017
1 parent 1e8a926 commit ce58a94
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
rh-wrapper/Robinhood.py
rh-wrapper/example.py
rh-wrapper/trade_history_downloader.py
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,6 @@ By default, this module is written in Python 2. For users who wish to use the m

* [robinhood-ruby](https://github.com/rememberlenny/robinhood-ruby) - RubyGem for interacting with Robinhood API
* [robinhood-node](https://github.com/aurbano/robinhood-node) - NodeJS module to make trades with Robinhood Private API

This project is a FORK of original code by:
https://github.com/Jamonek/Robinhood
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'rhwrapper',
packages = ['rhwrapper'], # this must be the same as the name above
version = '0.1',
description = 'Library to interact with private Robinhood API',
author = 'Greg Oberfield',
author_email = 'gregoberfield@gmail.com',
url = 'https://github.com/gregoberfield/Robinhood', # use the URL to the github repo
download_url = 'https://github.com/gregoberfield/Robinhood/archive/0.1.tar.gz',
keywords = ['robinhood', 'trading'], # arbitrary keywords
classifiers = [],
)

0 comments on commit ce58a94

Please sign in to comment.