mirror of
https://github.com/hydrosquall/tiingo-python.git
synced 2025-12-17 11:54:19 +01:00
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""The setup script."""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open('README.rst') as readme_file:
|
|
readme = readme_file.read()
|
|
|
|
with open('HISTORY.rst') as history_file:
|
|
history = history_file.read()
|
|
|
|
requirements = [
|
|
# TODO: put package requirements here
|
|
'requests'
|
|
]
|
|
|
|
setup_requirements = [
|
|
'pytest-runner',
|
|
# TODO: put setup requirements (distutils extensions, etc.) here
|
|
]
|
|
|
|
test_requirements = [
|
|
'pytest',
|
|
# TODO: put package test requirements here
|
|
]
|
|
|
|
setup(
|
|
name='tiingo',
|
|
version='0.1.1',
|
|
description="REST Client for Tiingo Data Platform API",
|
|
long_description=readme + '\n\n' + history,
|
|
author="Cameron Yick",
|
|
author_email='cameron.yick@enigma.com',
|
|
url='https://github.com/hydrosquall/tiingo',
|
|
packages=find_packages(include=['tiingo']),
|
|
include_package_data=True,
|
|
install_requires=requirements,
|
|
license="MIT license",
|
|
zip_safe=False,
|
|
keywords='tiingo',
|
|
classifiers=[
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
"Programming Language :: Python :: 2",
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
test_suite='tests',
|
|
tests_require=test_requirements,
|
|
setup_requires=setup_requirements,
|
|
)
|