Skip to content

Commit

Permalink
spherical_projections
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinson Garcia authored and Robinson Garcia committed Jan 21, 2025
1 parent 0e886cf commit 9b75b1a
Show file tree
Hide file tree
Showing 35 changed files with 47 additions and 443 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# My files
prompts
main.ipynb

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .projection import ProjectionRegistry
from .spherical_projections import ProjectionRegistry

__all__ = ["ProjectionRegistry"]
435 changes: 0 additions & 435 deletions main.ipynb

This file was deleted.

7 changes: 0 additions & 7 deletions pytest.ini

This file was deleted.

42 changes: 42 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import pathlib
from setuptools import setup, find_packages

# The directory containing this file
HERE = pathlib.Path(__file__).parent

# Text of the README file (if you want to include it on PyPI)
README = (HERE / "README.md").read_text() if (HERE / "README.md").exists() else ""

setup(
name="spherical_projection", # Package name (change as appropriate)
version="0.1.0-beta", # Package version
description="A spherical projection library for Python", # Short description
long_description=README, # Detailed description from your README
long_description_content_type="text/markdown",
author="RLSGarcia", # Replace with your name or organization
author_email="[email protected]", # Replace with your email
url="https://github.com/RobinsonGarcia/ProjectionRegistry/", # Project URL
packages=find_packages(exclude=["tests*", "docs*", "examples*"]),
include_package_data=True, # If you have non-Python files to include
python_requires=">=3.7", # Python version requirement
install_requires=[
"numpy>=1.20.0",
"pydantic>=1.10.0",
"scipy>=1.5.0",
"opencv-python>=4.5.0",
# Add any other required dependencies here
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
# If you have console scripts or command-line utilities, you can define them here:
# entry_points={
# "console_scripts": [
# "gnomonic=projection.cli:main",
# ],
# },
)
Binary file added spherical_projections/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9b75b1a

Please sign in to comment.