Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds: distutils setup script #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ oandapy is a python wrapper for OANDA's REST API.
Install
======

python-requests is required. Using pip:
Just use pip (while in repository directory):

$ pip install requests
$ pip install -e .

Usage
======
Expand Down
2 changes: 2 additions & 0 deletions oandapy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#
from oandapy import *
File renamed without changes.
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages
import sys, os

version = '0.1'

setup(name='oandapy',
version=version,
description="Python wrapper for the OANDA REST API",
long_description="""\
""",
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry'
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules'
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='oanda forex wrapper rest api',
author='OANDA',
author_email='[email protected]',
url='http://developer.oanda.com/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'requests',
],
entry_points="""
# -*- Entry points: -*-
""",
)