-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
33 lines (29 loc) · 1.32 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
import setuptools
import os
project_url = 'http://github.com/tibkiss/iqfeed'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
if os.path.exists('README.md'):
long_description = open('README.md').read()
else:
long_description = 'IQFeed / DTN Data downloader. See details at: %s' % project_url
setuptools.setup(name='iqfeed',
version='0.4.3',
description='IQFeed / DTN Data downloader',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business :: Financial :: Investment',
],
url=project_url,
author='Tibor Kiss',
author_email='[email protected]',
license='Apache License, Version 2.0',
packages=setuptools.find_packages(),
install_requires=['docopt', 'pytz', 'backports.functools_lru_cache'],
entry_points={'console_scripts': ['iqfeed = iqfeed.main:main']},
zip_safe=False)