-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (43 loc) · 1.8 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
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
from setuptools import find_packages
setup(
name='pandas-datareader-gdax',
version='0.1.2',
author='Brad Folkens',
author_email='[email protected]',
packages=find_packages(where="src"),
package_dir={"": "src"},
url='https://github.com/bfolkens/pandas-datareader-gdax',
license='BSD license',
description='GDAX data for Pandas in the style of DataReader.',
long_description=open('README.rst').read(),
install_requires=[
"numpy >= 1.13.0",
"pandas >= 0.20.3",
"gdax >= 1.0.6"
],
keywords=['python', 'finance', 'quant', 'data', 'crypto', 'bitcoin', 'gdax'],
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
# uncomment if you test on these interpreters:
# 'Programming Language :: Python :: Implementation :: IronPython',
# 'Programming Language :: Python :: Implementation :: Jython',
# 'Programming Language :: Python :: Implementation :: Stackless',
'Topic :: Software Development :: Libraries'
],
)