aboutsummaryrefslogtreecommitdiff
path: root/science/py-asdf/files/setup.py
blob: 78c9ae3289487089d48ae8c66d95617362e98f6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/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',
 'asdf.commands',
 'asdf.commands.tests',
 'asdf.commands.tests.data',
 'asdf.compat',
 'asdf.extension',
 'asdf.extern',
 'asdf.tags',
 'asdf.tags.core',
 'asdf.tags.core.tests',
 'asdf.tags.core.tests.data',
 'asdf.testing',
 'asdf.tests',
 'asdf.tests.data']

package_data = \
{'': ['*']}

install_requires = \
['asdf-standard >=1.0.1',
 'asdf-transform-schemas >=0.3.0',
 'asdf-unit-schemas >=0.1.0',
 'importlib-metadata >=4.8.1',
 'jmespath >=0.6.2',
 'jsonschema >=4.0.1',
 'numpy >=1.18',
 'packaging >=16.0',
 'pyyaml >=3.10',
 'semantic_version >=2.8']

extras_require = \
{':python_version <"3.9"': ['importlib_resources >=3'],
 'all': ['lz4 >=0.10'],
 'docs': ['tomli', 'sphinx-asdf >=0.1.4'],
 'tests': ['astropy >=5.0.4',
           'gwcs',
           'pytest >=6.0.0',
           'pytest-doctestplus',
           'pytest-remotedata',
           'pytest-openfiles',
           'psutil',
           'lz4 >=0.10',
           'fsspec[http] >=2022.8.2']}

entry_points = \
{'console_scripts': ['asdftool = asdf.commands.main:main'],
 'asdf_extensions': ['builtin = asdf.extension:BuiltinExtension'],
 'asdf.resource_mappings': ['asdf = asdf.resource:get_json_schema_resource_mappings'],
 'pytest11': ['asdf_schema_tester = pytest_asdf.plugin']}

setup(name='asdf',
      version='%%PORTVERSION%%',
      description='Python implementation of the ASDF Standard',
      author=None,
      author_email='The ASDF Developers <help@stsci.edu>',
      url=None,
      packages=packages,
      package_data=package_data,
      install_requires=install_requires,
      extras_require=extras_require,
      entry_points=entry_points,
      python_requires='>=3.8',
     )