-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
31 lines (28 loc) · 998 Bytes
/
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
# coding: utf-8
try:
import setuptools
from setuptools import setup, find_packages
except ImportError:
print("Please install setuptools.")
import os
long_description = 'googlefinance.client is a python client library for google finance api.'
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup(
name = 'googlefinance.client',
version = '1.3.1',
description = 'googlefinance.client is a python client library for google finance api.',
long_description = long_description,
license = 'MIT',
author = 'pdevty',
author_email = '[email protected]',
url = 'https://github.com/pdevty/googlefinance-client-python',
keywords = 'googlefinance',
packages = find_packages(),
install_requires = ['datetime', 'requests', 'pandas'],
classifiers = [
'Programming Language :: Python :: 3.6',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License'
]
)