This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
54 lines (48 loc) · 1.61 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
from setuptools import setup, find_packages
version = '0.2.3'
desc = '''\
FinancialFundamentals
=========================
:Author: Andrew Kittredge
:Version: $Revision: {}
:Copyright: Andrew Kittredge
:License: Apache Version 2
FinancialFundamentals caches financial data to speed alogirithm development. It is developed with the zipline backtesting library in mind. Currently it caches prices downloaded from yahoo and two accounting metrics extracted from XBRL downloaded from the SEC's Edgar system.
FinancialFundamentals is under active development, comments, suggestions, and bug reports are appreciated.
'''.format(version)
setup(name='FinancialFundamentals',
version=version,
description='Caching for financial metrics.',
long_description=desc,
author='Andrew Kittredge',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial',
],
install_requires=[
'numpy',
'pytz',
'requests_cache',
'requests',
'BeautifulSoup',
'mock',
'pandas',
'xmltodict',
'blist',
'python-dateutil==1.5',
'vector_cache',
],
dependency_links=[
'http://github.com/andrewkittredge/vector_cache/tarball/master#egg=vector_cache',
],
url='https://github.com/andrewkittredge/financial_fundamentals',
)