StableNormal / setup.py
Stalbe-X
Initial Commit
b89eee2
raw
history blame contribute delete
No virus
170 Bytes
from pathlib import Path
from setuptools import setup, find_packages
setup_path = Path(__file__).parent
setup(
name = "stablenormal",
packages=find_packages()
)