-
Notifications
You must be signed in to change notification settings - Fork 181
/
setup.py
57 lines (50 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
#
# Copyright (c) 2013, Corey Goldberg (cgoldberg@gmail.com)
#
# license: GNU LGPL
#
# This file is part of: ystockquote
# https://github.com/cgoldberg/ystockquote
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
"""setup/install script for ystockquote"""
import os
from distutils.core import setup
from ystockquote import __version__
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, 'README.rst')) as f:
LONG_DESCRIPTION = '\n' + f.read()
setup(
name='ystockquote',
version=__version__,
py_modules=['ystockquote'],
author='Corey Goldberg',
author_email='cgoldberg _at_ gmail.com',
description='retrieve stock quote data from Yahoo Finance',
long_description=LONG_DESCRIPTION,
url='https://github.com/cgoldberg/ystockquote',
download_url='http://pypi.python.org/pypi/ystockquote',
keywords='stocks stockmarket market finance yahoo quotes'.split(),
license='GNU LGPLv2+',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial :: Investment',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)