Skip to content

Commit

Permalink
Updated setup.py to source certain fields from opera._package.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Collins committed Jan 24, 2022
1 parent 59247fc commit 60297ab
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

"""The setup script."""

import opera
from setuptools import find_packages, setup

with open('README.rst') as readme_file:
Expand Down Expand Up @@ -41,18 +42,18 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
description="Repository for the Product Generation Executable (PGE) code utilized with the Observational Products for End-Users from Remote Sensing Analysis (OPERA) Science Data System (SDS).",
description=opera.__summary__,
install_requires=requirements,
license="Apache Software License 2.0",
long_description=readme,
include_package_data=True,
keywords='opera_sds_pge',
name='opera-sds-pge',
keywords=['opera', 'jpl', 'pge', 'sas', 'sds'],
name=opera.__title__,
packages=find_packages(include=['opera', 'opera.*']),
test_suite='test',
tests_require=test_requirements,
url='https://github.com/nasa/opera-sds-pge',
version='1.0.0-er.1.0',
url=opera.__uri__,
version=opera.__version__,
zip_safe=False,
extras_require={"dev": dev_requirements},
)

0 comments on commit 60297ab

Please sign in to comment.