-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61eb11a
commit 5506b94
Showing
8 changed files
with
38 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[metadata] | ||
name = fucking-black-scholes | ||
version = 0.0.2 | ||
author = Dennis Concepcion Martin | ||
author_email = dennisconcepcionmartin@gmail.com | ||
description = A simple command line tool for pricing options using the Black-Scholes model | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/denniscm190/fucking-black-scholes | ||
project_urls = Bug Tracker = https://github.com/denniscm190/fucking-black-scholes/issues | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
package_dir = = src | ||
packages = find: | ||
python_requires = >=3.8 | ||
install_requires = | ||
numpy~=1.21.4 | ||
scipy~=1.7.2 | ||
click~=8.0.3 | ||
|
||
[options.packages.find] | ||
where = src | ||
|
||
[options.entry_points] | ||
console_scripts = fbs = fbs.main:cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,4 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name='fucking-black-scholes', | ||
description='A simple command line tool for pricing options using the Black-Scholes model', | ||
version='0.0.1', | ||
packages=find_packages(), | ||
install_requires=['numpy~=1.21.4', 'scipy~=1.7.2', 'click~=8.0.3'], | ||
python_requires='>=3.8', | ||
entry_points=''' | ||
[console_scripts] | ||
fbs=fbs.main:cli | ||
''', | ||
author="Dennis Concepción Martín", | ||
keyword="finance, black-scholes, option, pricing, derivative", | ||
license='MIT', | ||
url='https://github.com/denniscm190/fucking-black-scholes', | ||
author_email='dennisconcepcionmartin@gmail.com', | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.8", | ||
] | ||
) | ||
setup() |
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters