File size: 170 Bytes
b89eee2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from pathlib import Path
from setuptools import setup, find_packages

setup_path = Path(__file__).parent

setup(
    name = "stablenormal",
    packages=find_packages()
)