Something went wrong on our end
-
Bruce Flynn authoredBruce Flynn authored
setup.py 413 B
from setuptools import setup, find_packages
setup(
name='EdosL0Util',
description='Utilities for working with EDOS L0 PDS files',
version=':pygittools:',
pygitmeta=True,
packages=find_packages(),
setup_requires=[
'PyGitTools>=0.1.2'
],
install_requires=[
'edos'
],
entry_points="""
[console_scripts]
edosl0split = edosl0util.cli:cmd_split
"""
)