freebsd-ports/science/py-asdf-unit-schemas/files/setup.py
Po-Chuan Hsieh 3de7714032
science/py-asdf-unit-schemas: Add py-asdf-unit-schemas 0.1.0
asdf-unit-schemas provides ASDF schemas for validating unit tags. Users should
not need to install this directly; instead, install an implementation package
such as asdf-astropy, which includes asdf-unit-schemas as a dependency.
2023-01-30 20:58:48 +08:00

49 lines
1.2 KiB
Python

#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517
from distutils.core import setup
packages = \
['asdf_unit_schemas']
package_data = \
{'': ['*']}
package_dir = \
{'': 'src'}
install_requires = \
['asdf-standard >= 1.0.1']
extras_require = \
{':python_version<"3.9"': ['importlib_resources >= 3'],
'docs': ['tomli',
'sphinx',
'sphinx-asdf >= 0.1.3',
'sphinx-astropy',
'astropy >= 5.0.4',
'graphviz',
'matplotlib',
'docutils',
'sphinx-rtd-theme'],
'test': ['asdf >= 2.8.0', 'asdf-astropy', 'scipy', 'pytest']}
entry_points = \
{'asdf.resource_mappings': ['asdf_unit_schemas = '
'asdf_unit_schemas.integration:get_resource_mappings']}
setup(name='asdf_unit_schemas',
version='%%PORTVERSION%%',
description='ASDF schemas for units',
author=None,
author_email='The ASDF Developers <help@stsci.edu>',
url=None,
packages=packages,
package_data=package_data,
package_dir=package_dir,
install_requires=install_requires,
extras_require=extras_require,
entry_points=entry_points,
python_requires='>=3.8',
)