-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 686 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
from setuptools import setup, find_packages
setup(
name="superforecaster",
version="0.1.0",
packages=find_packages(),
install_requires=[
"typer>=0.9.0",
"rich>=13.7.0",
"plotext>=5.2.8",
],
entry_points={
"console_scripts": [
"forecast=superforecaster.cli:app",
"superforecast=superforecaster.cli:app",
],
},
python_requires=">=3.7",
author="Your Name",
description="A CLI tool for tracking and improving probabilistic predictions",
long_description=open("README.md").read() if os.path.exists("README.md") else "",
long_description_content_type="text/markdown",
)