fix: import, name and initial version

This commit is contained in:
Guilhem Lavaux 2024-11-07 13:41:35 +02:00
parent 1a8fe60a56
commit ebb4932c27
2 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,7 @@
[project] [project]
version = "1.0.0" version = "1.0.0"
requires-python = ">= 3.8" requires-python = ">= 3.8"
name = "pysphereproj" name = "glmath"
dependencies = [ dependencies = [
"numpy" "numpy"
] ]
@ -16,8 +16,8 @@ classifiers = [
] ]
[project.urls] [project.urls]
Homepage = "https://git.aquila-consortium.org/guilhem_lavaux/pysphereproj" Homepage = "https://github.com/guilhem_lavaux/glmath"
Issues = "https://git.aquila-consortium.org/guilhem_lavaux/pysphereproj/issues" Issues = "https:///github.com/guilhem_lavaux/glmath/issues"
[build-system] [build-system]
requires = ["setuptools >= 61.0", "numpy", "wheel", "Cython", "python-semantic-release"] requires = ["setuptools >= 61.0", "numpy", "wheel", "Cython", "python-semantic-release"]
@ -29,7 +29,7 @@ version_toml = [
"pyproject.toml:project.version", "pyproject.toml:project.version",
] ]
version_variables = [ version_variables = [
"src/sphereproj/__init__.py:__version__" "src/glmath/__init__.py:__version__"
] ]
build_command_env = [] build_command_env = []
commit_message = "{version}\n\nAutomatically generated by python-semantic-release" commit_message = "{version}\n\nAutomatically generated by python-semantic-release"

View File

@ -0,0 +1,2 @@
from _cosmomath import *
__version__ = "1.0.0"