-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
32 lines (30 loc) · 1.23 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
longdesc = fh.read()
setuptools.setup(
description="CCC: A Cost of Capital Calculator",
url="https://github.com/PSLmodels/Cost-of-Capital-Calculator",
download_url="https://github.com/PSLmodels/Cost-of-Capital-Calculator",
long_description_content_type="text/markdown",
long_description=longdesc,
version="1.5.2",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
packages=["ccc"],
include_package_data=True,
name="cost-of-capital-calculator",
install_requires=["taxcalc", "pandas", "bokeh", "numpy", "paramtools"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tests_require=["pytest"],
)