This commit is contained in:
2025-07-20 04:11:04 -04:00
commit 69b521b549
40 changed files with 7781 additions and 0 deletions

18
setup.py Normal file
View File

@@ -0,0 +1,18 @@
"""
Setup script for SqrtSpace SpaceTime.
This is a compatibility shim for older pip versions.
The actual package configuration is in pyproject.toml.
"""
from setuptools import setup
# Read the contents of README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
setup(
long_description=long_description,
long_description_content_type='text/markdown',
)