-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
41 lines (39 loc) · 1.43 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="finoptions",
version="0.1.5",
author="Ben Cho",
license="MIT License", # Chose a license from here: https://help.github.com/articles/licensing-a-repository
author_email="[email protected]",
description="Energy derivatives (futures, options etc...)",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
package_data={"": ["*.csv", "*.json", "*.geojson"]},
keywords=[
"Energy",
"Risk",
"Crude",
"Trading",
"Petroleum",
"Oil",
"Refinery",
"Refined Products",
"Products",
],
url="https://github.com/bbcho/finoptions-dev",
# download_url="https://github.com/bbcho/finoptions-dev/archive/refs/heads/main.zip",
install_requires=["scipy>=1.7", "numpy", "numdifftools", "matplotlib"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
],
python_requires=">=3.6",
)