-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
29 lines (28 loc) · 1.07 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
from distutils.core import setup
import setuptools
setup(
name='finsymbols',
version='1.3.0',
packages=['finsymbols'],
package_dir={'finsymbols': 'finsymbols'},
package_data={'finsymbols': ['exchanges/*.csv']},
include_package_data=True,
author='Dwayne V Campbell',
author_email='[email protected]',
description='Retrieves list of all symbols present in SP500, NASDAQ ,AMEX and NYSE',
long_description=open('README.md').read(),
url='http://skillachie.github.io/finsymbols/',
download_url='http://pypi.python.org/pypi/finsymbols',
keywords='stocks stockmarket yahoo finance SP500 NASDAQ AMEX NYSE'.split(),
license='GNU LGPLv2+',
install_requires=[
"beautifulsoup4 >= 4.2.1"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial :: Investment',
]
)