Select Git revision
-
Jiří Kalvoda authoredJiří Kalvoda authored
setup.py 332 B
from pathlib import Path
from setuptools import setup
# This is where you add any fancy path resolution to the local lib:
local_path: str = (Path(__file__).parent).as_uri()
setup(
install_requires=[
f"formatitko @ {local_path}/formatitko",
"plotly",
"AdvancedHTMLParser",
"setuptools",
]
)