forked from jessecooper/pyetrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.2 KB
/
setup.py
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
33
34
#!/usr/bin/env python3
from distutils.core import setup
# requirements
with open('requirements.txt') as requirements:
req = [i.strip() for i in requirements]
setup(name='pyetrade',
version='0.8.0',
description='eTrade API wrappers',
author='Jesse Cooper',
author_email='[email protected]',
url='https://github.com/jessecooper/pyetrade',
license='GPLv3',
packages=['pyetrade'],
package_dir={'pyetrade':'pyetrade'},
install_requires=req,
platforms=['any'],
keywords=['etrade', 'pyetrade', 'stocks'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
]
)