10 lines
183 B
Python
10 lines
183 B
Python
"""setup.py"""
|
|
|
|
from setuptools import find_packages, setup # type: ignore
|
|
|
|
setup(
|
|
name="sandpypi",
|
|
package_dir={"": "python"},
|
|
packages=find_packages(where="python"),
|
|
)
|