-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·45 lines (41 loc) · 1.56 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
import os
from setuptools import setup, find_packages
__author__ = 'Josue Kouka'
__email__ = '[email protected]'
__version__ = '1.2.7'
#requirements.txt
with open('requirements.txt') as f:
required = f.read().splitlines()
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "myql",
version = __version__,
description = "Python Wrapper for the Yahoo! Query Language. Allowing to run YQL queries, fetch financial data and create YQL Open Tables",
long_description = read("README.rst"),
author = __author__,
author_email = __email__,
url = "https://github.com/josuebrunel/MYQL",
download_url = "https://github.com/josuebrunel/myql/archive/{0}.tar.gz".format(__version__),
keywords = ['myql', 'yql', 'yahoo', 'query', 'language'],
packages = find_packages(),
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
platforms=['Any'],
license='MIT',
install_requires = required
)