-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 1011 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 1011 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
26
27
28
29
30
31
32
#!/usr/bin/env python
from distutils.core import setup
setup(
name='tradeking',
version='0.1',
description='Python library for the TradeKing API',
long_description='Python library for the TradeKing API',
author='Trey Tabner',
url='https://github.com/treytabner/python-tradeking',
py_modules=['tradeking'],
scripts=['tradeking.py'],
license='AGPL',
platforms='any',
install_requires=[
'requests',
'requests-oauthlib',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)