Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Comments and explanation to functions #52

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,43 @@
from setuptools import setup

# Setup configuration for the project
setup(
# Name of the project
name='wallstreet',
# Version of the project
version='0.4.0',
# Description of the project
description='Real-time Stock and Option tools',
# URL of the project
url='https://github.com/mcdallas/wallstreet',
# Author of the project
author='Mike Dallas',
# Author's email
author_email='mcdallas@protonmail.com',
# License under which the project is distributed
license='MIT',
# Packages included in the project
packages=['wallstreet'],
# Classifiers that describe the project's maturity and audience
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# Project maturity
'Development Status :: 3 - Alpha',

# Indicate who your project is intended for
# Intended audience
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
# Topic of the project
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Software Development :: Libraries :: Python Modules',
# Operating system compatibility
'Operating System :: OS Independent',

# Pick your license as you wish (should match "license" above)
# License of the project
'License :: OSI Approved :: MIT License',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
# Supported Python versions
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
# Keywords associated with the project
keywords='stocks options finance market shares greeks implied volatility real-time',
# Dependencies of the project
install_requires=['requests', 'scipy', 'yfinance'],
)
Loading