forked from cttn/Stockex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 1.13 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
from distutils.core import setup
import codecs
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
func = lambda name, enc = ascii: {True: enc}.get(name == 'mbcs')
codecs.register(func)
with open('README.txt') as file:
long_description = file.read()
__author__ = 'Stockex'
__version__ = '0.1.3'
__email__ = '[email protected]'
setup(
name=__author__,
version=__version__,
description='Python 3 wrapper for Yahoo! Finance API',
author='Cttn',
author_email=__email__,
url='https://github.com/cttn/Stockex',
packages=['stockex', ],
license='Public Domain',
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Console',
'Intended Audience :: Developers',
],
platforms=['Any']
)