Skip to content
Snippets Groups Projects
Select Git revision
  • 587a5a0bcd5472b52e285e313a28f5fe2b3ff84e
  • master default protected
2 results

setup.py

Blame
  • 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",
        ]
    )