-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from ppoply/par97462/pylerc_changes
renaming python package to pylerc + doc updated
- Loading branch information
Showing
4 changed files
with
12 additions
and
9 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
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,12 +1,10 @@ | ||
import setuptools | ||
import os | ||
|
||
from glob import glob | ||
from os.path import basename, exists, join, getmtime | ||
from shutil import copyfile | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
readme_path = os.path.join(dir_path, "..", "..", "README.md") | ||
readme_path = join("lerc", "README.md") | ||
|
||
try: | ||
with open(readme_path, "r") as fh: | ||
|
@@ -28,16 +26,17 @@ | |
copyfile(input_binary, output_binary) | ||
|
||
setuptools.setup( | ||
name="lerc", | ||
name="pylerc", | ||
version="4.0", | ||
author="esri", | ||
author_email="[email protected]", | ||
description="Limited Error Raster Compression", | ||
# long_description=long_description, | ||
# long_description_content_type="text/markdown", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
license="Apache 2", | ||
url="https://github.com/Esri/lerc", | ||
packages=setuptools.find_packages(), | ||
install_requires=["numpy"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
|
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
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