-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
34 lines (33 loc) · 874 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="TIMCAT",
version="0.1.0",
description="TIMCAT is used to capital costs of nuclear power plants",
url="https://github.com/mit-crpg/TIMCAT",
author="",
author_email="",
license="NONE",
packages=find_packages(),
install_requires=[
"numpy",
"pandas",
"scipy",
"matplotlib",
"openpyxl==3.1.0",
"pytest",
"m2r2",
"tqdm",
"rich",
"bottleneck",
"astropy",
"pint",
],
entry_points={"console_scripts": ["timechecker = TIMCAT.main:main"]},
classifiers=[
"Development Status :: Concept",
"Intended Audience :: Science/Research",
"License :: NONE :: NONE",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
],
)