-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
33 lines (28 loc) · 1.35 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
from setuptools import setup, find_packages
from distutils.core import setup
setup(
name = 'pinance',
version = '1.0',
packages=find_packages(exclude=["contrib", "docs", "test*"]),
description = 'A collection of python modules to get finance data (stock quotes, news and options)',
author = 'NT (neberej)',
author_email = 'mail@vguh.com',
url = 'https://github.com/neberej/pinance',
download_url = 'https://github.com/neberej/pinance/archive/1.0.tar.gz',
keywords = ['stock', 'options', 'finance', 'trade', 'market-data', 'python', 'yahoo-finance-api', 'google-finance'],
classifiers = [
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=['demjson>=2.2.0', 'simplejson>=3.4.1', 'pytz', 'datetime>=4.0', 'Request>=0.0.0', 'urlopen>=1.0.0']
)