-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 701 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 701 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
#!/usr/bin/env python3
import os.path
from distutils.core import setup
exec(open('./eodapi/version.py').read())
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='eodapi',
version=__version__,
description='Wrapper for EOD stock API https://eodhistoricaldata.com',
long_description=read('README.md'),
author='Dennis Greguhn',
author_email='',
url=__url__,
install_requires=[
'requests>=2.18.2,<3'
],
packages=['eodapi'],
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)