initial commit, nothing much here

This commit is contained in:
2024-03-06 11:34:29 +01:00
commit 787d4e776a
12 changed files with 269 additions and 0 deletions

8
setup.py Normal file
View File

@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name="sphere_grid",
version="1.0",
packages=find_packages("."),
)