-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (33 loc) · 1.28 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
long_description = 'library for analyzing company financial documents'
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='DIY-FilingsResearch',
version='0.3.0',
description='library for analyzing company financial documents',
author='Joe Cabrera',
author_email='jcabrera@eminorlabs.com',
url='https://github.com/greedo/DIY-FilingsResearch/',
license='Apache License',
keywords='Financial, Accounting, file formats, 10k, 10q, filings, \
edgar, sedar',
scripts=['threadedSearch.py', 'ingestor.py', 'examples/searcher.py',
'examples/download_edgar.py', 'examples/download_sedar.py'],
install_requires=['pytest', 'requests', 'lxml', 'futures', 'selenium'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial',
],
long_description=long_description
)