-
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.
updating base image docker builds to use new or omit sci sub package
- Loading branch information
1 parent
4546c19
commit 5037fb1
Showing
3 changed files
with
41 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"""Setup to support installation as Python library""" | ||
import glob | ||
from setuptools import setup | ||
|
||
setup(name='idsse', | ||
version='1.0', | ||
description='IDSSe Common', | ||
url='', | ||
author='WIDS', | ||
author_email='@noaa.gov', | ||
license='MIT', | ||
python_requires=">=3.11", | ||
packages=['idsse.common', 'idsse.common.schema'], | ||
data_files=[('idsse/common/schema', glob.glob('idsse/common/schema/*.json'))], | ||
include_package_data=True, | ||
package_data={'':['schema/*.json']}, | ||
install_requires=[ | ||
'pint', | ||
'importlib_metadata', | ||
'pika', | ||
'jsonschema' | ||
], | ||
extras_require={ | ||
'develop': [ | ||
'pytest', | ||
'pytest-cov', | ||
] | ||
}, | ||
zip_safe=False, | ||
) |