Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 64 additions & 62 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,66 +21,68 @@ def find_version(*parts):
raise RuntimeError("Unable to find version string.")


setup(name="EXtra-data",
version=find_version("extra_data", "__init__.py"),
author="European XFEL GmbH",
author_email="da-support@xfel.eu",
maintainer="Thomas Michelat",
url="https://github.com/European-XFEL/EXtra-data",
description="Tools to read and analyse data from European XFEL ",
long_description=read("README.md"),
long_description_content_type='text/markdown',
license="BSD-3-Clause",
packages=find_packages(),
package_data={
'extra_data.tests': ['dssc_geo_june19.h5', 'lpd_mar_18.h5'],
},
entry_points={
"console_scripts": [
"lsxfel = extra_data.lsxfel:main",
"karabo-bridge-serve-files = extra_data.export:main",
"extra-data-validate = extra_data.validation:main",
"extra-data-make-virtual-cxi = extra_data.cli.make_virtual_cxi:main",
"extra-data-locality = extra_data.locality:main",
],
},
install_requires=[
'fabio',
'h5py>=2.7.1',
'karabo-bridge >=0.6',
'matplotlib',
'numpy',
'pandas',
'psutil',
'scipy',
'xarray',
],
extras_require={
'docs': [
'sphinx',
'nbsphinx',
'ipython', # For nbsphinx syntax highlighting
'sphinxcontrib_github_alt',
],
'test': [
'coverage',
'dask[array]',
'nbval',
'pytest',
'pytest-cov',
'testpath',
]
},
python_requires='>=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics',
]
setup(
name="EXtra-data",
version=find_version("src", "extra_data", "__init__.py"),
author="European XFEL GmbH",
author_email="da-support@xfel.eu",
maintainer="Thomas Michelat",
url="https://github.com/European-XFEL/EXtra-data",
description="Tools to read and analyse data from European XFEL ",
long_description=read("README.md"),
long_description_content_type='text/markdown',
license="BSD-3-Clause",
packages=find_packages("src"),
package_data={
'extra_data.tests': ['dssc_geo_june19.h5', 'lpd_mar_18.h5'],
},
package_dir={"": "src"},
entry_points={
"console_scripts": [
"lsxfel = extra_data.lsxfel:main",
"karabo-bridge-serve-files = extra_data.export:main",
"extra-data-validate = extra_data.validation:main",
"extra-data-make-virtual-cxi = extra_data.cli.make_virtual_cxi:main",
"extra-data-locality = extra_data.locality:main",
],
},
install_requires=[
'fabio',
'h5py>=2.7.1',
'karabo-bridge >=0.6',
'matplotlib',
'numpy',
'pandas',
'psutil',
'scipy',
'xarray',
],
extras_require={
'docs': [
'sphinx',
'nbsphinx',
'ipython', # For nbsphinx syntax highlighting
'sphinxcontrib_github_alt',
],
'test': [
'coverage',
'dask[array]',
'nbval',
'pytest',
'pytest-cov',
'testpath',
]
},
python_requires='>=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics',
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.