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
|
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[metadata]
name = orsopy
version = attr: orsopy.__version__
author = ORSO contributors (see AUTHORS.rst)
author_email = andrew.mccluskey@ess.eu
description = Support library of the Open Reflectometry Standards Organization (ORSO)
long_description = file: README.rst
url = https://github.com/reflectivity/orsopy
license = MIT
license-file = LICENSE
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering
Development Status :: 5 - Production/Stable
[options]
python_requires = >=3.8
packages = find:
install_requires =
pyyaml>=5.4.1
include_package_data = True
[options.package_data]
orsopy.slddb.element_table = nabs_geant4/*.npz
orsopy.fileio = schema/*.*
orsopy.fileio.tests = *.ort
|