- __init__.py added to all folders - preparing docs - .gitignore updated - .vscode/settings.json updated - mypy.ini updated - pyproject.toml updated - plansandideas/Coding optimization plan.md added - plansandideas/REORGANIZATION.md added - scripts/lint.py added - scripts/setup_dev.py added - requirements-dev.txt added - and more.
9 lines
137 B
Python
9 lines
137 B
Python
"""setup.py"""
|
|
|
|
from setuptools import find_packages, setup # type: ignore
|
|
|
|
setup(
|
|
name="sandpypi",
|
|
packages=find_packages(),
|
|
)
|