forked from jkoelker/python-tradeking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 614 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*-
from setuptools import setup
version = '0.1'
setup(name='tradeking',
version=version,
description="Python wrapper around Tradeking's API",
long_description=open('README.rst').read(),
keywords='',
author='Jason Kölker',
author_email='jason@koelker.net',
url='https://github.com/jkoelker/python-tradeking',
license='MIT',
packages=['tradeking'],
include_package_data=True,
zip_safe=False,
install_requires=[
'lxml',
'requests',
'requests_oauthlib',
'pandas',
],
)