Skip to content

Commit

Permalink
updated all the aux package files
Browse files Browse the repository at this point in the history
  • Loading branch information
burningsage committed Apr 17, 2024
1 parent 6e5a089 commit e9a48ff
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
*.egg-info
.eggs
*.tif
*.ipynb_checkpoints/
*.zip
*__pycache__/
*.idea/
*.tif.aux.xml
*.html
*.html
dist/
8 changes: 8 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include HISTORY.md
include README.md

recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]

recursive-include *.md Makefile *.jpg *.png *.gif
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# disco_tif
some general raster tools for visualization

The primary utility of this library is to take a single-channel geotiff and create an rgba (32bit) geotiff.
The code can take a colormap name from matplotlib (https://matplotlib.org/stable/users/explain/colors/colormaps.html), however If no colormap is supplied the EMerald_standard_colormap will be applied. This is a data driven colormap.
Basically
7 changes: 0 additions & 7 deletions requirements.txt

This file was deleted.

4 changes: 0 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
import os,sys
from setuptools import setup, find_packages

git_token = os.environ["GITHUB_TOKEN_EMRLD"]
if not "GITHUB_TOKEN_EMRLD" in os.environ:
print("Github token (GITHUB_TOKEN_EMRLD) not set!", file=sys.stderr)

with open('README.md') as readme_file:
readme = readme_file.read()

Expand Down

0 comments on commit e9a48ff

Please sign in to comment.