-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved logging; added quiet option to read_tables; improved packaging
- Loading branch information
Showing
3 changed files
with
53 additions
and
18 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
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,10 +1,19 @@ | ||
from setuptools import setup | ||
|
||
setup(name='pds4_utils', | ||
version='0.1', | ||
description='PDS4 utilities', | ||
author='Mark S. Bentley', | ||
author_email='[email protected]', | ||
packages=['pds4_utils'], | ||
zip_safe=False) | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup(name='pds4_utils', | ||
version='0.1', | ||
author='Mark S. Bentley', | ||
author_email='[email protected]', | ||
description='A collection of PDS4 utilities', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/msbentley/pds4_utils", | ||
download_url = 'https://github.com/msbentley/pds4_utils/archive/0.1.tar.gz', | ||
install_requires=['pandas','pyyaml','lxml','pds4-tools'], | ||
python_requires='>=3.0', | ||
keywords = ['PDS','archive','data'], | ||
packages=['pds4_utils'], | ||
zip_safe=False) |