This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
66 lines (56 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
from os import path
from setuptools import find_packages, setup
from options_scraper import __version__
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
VERSION = __version__
DISTNAME = 'options_scraper'
LICENSE = 'GNU GPLv3'
AUTHOR = 'Abhishek Singh'
MAINTAINER = 'Abhishek Singh'
MAINTAINER_EMAIL = 'aosingh@asu.edu'
DESCRIPTION = 'NASDAQ Options chain scraper for https://old.nasdaq.com'
URL = 'https://github.com/aosingh/options_scraper'
PACKAGES = ['options_scraper']
DEPENDENCIES = ['lxml', 'requests', 'urllib3']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Office/Business :: Financial',
'Topic :: Text Processing :: Markup :: HTML',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS'
]
keywords = 'nasdaq options chain scraper'
setup(
name=DISTNAME,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
entry_points={
'console_scripts': [
'options-scraper=options_scraper.cli:main'
]
},
packages=find_packages(exclude=("tests",)),
package_dir={'options_scraper': 'options_scraper'},
install_requires=DEPENDENCIES,
include_package_data=True,
classifiers=classifiers,
keywords=keywords,
)