-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robinson Garcia
authored and
Robinson Garcia
committed
Jan 21, 2025
1 parent
0e886cf
commit 9b75b1a
Showing
35 changed files
with
47 additions
and
443 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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.