mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-24 17:22:10 +00:00
10 lines
226 B
Python
10 lines
226 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="llama-swap-exporter",
|
|
version="1.0",
|
|
# Modules to import from other scripts:
|
|
packages=find_packages(),
|
|
# Executables
|
|
scripts=["exporter.py"],
|
|
)
|