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 70 71 72 73 74 75 76
|
[project]
name = 'freesas'
dynamic = ['version',]
license = {file = 'copyright'}
requires-python = '>=3.7'
readme = 'README.md'
description = 'Small angle scattering tools ... but unlike most others, free and written in Python'
authors = [
{ name = 'Guillaume Bonamis'},
{ name = 'Martha Brennich'},
{ name = 'Jérôme Kieffer', email = 'jerome.kieffer@esrf.fr'},
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
dependencies = [
'numpy',
'scipy',
'matplotlib',
'silx'
]
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python>=0.11',
"meson>=0.64; platform_system=='Windows'",
"meson>=0.63; platform_system!='Windows'",
'ninja',
'wheel',
'Cython>=0.29',
"numpy<1.26.0; platform_machine == 'ppc64le'",
"numpy; platform_machine != 'ppc64le'",
'pyproject-metadata>=0.5.0',
'tomli>=1.0.0',
'scipy',
'silx'
]
[project.urls]
homepage = 'http://silx.org'
documentation = 'http://www.silx.org/doc/freesas/latest/'
source = 'https://github.com/silx-kit/freeas'
download = 'https://github.com/silx-kit/freesas/releases'
tracker = 'https://github.com/silx-kit/freesas/issues'
[project.scripts]
free_gpa = 'freesas.app.auto_gpa:main'
free_guinier = 'freesas.app.auto_guinier:main'
free_rg = 'freesas.app.autorg:main'
cormapy = 'freesas.app.cormap:main'
supycomb = 'freesas.app.supycomb:main'
free_bift = 'freesas.app.bift:main'
extract_ascii = 'freesas.app.extract_ascii:main'
free_dnn = 'freesas.app.dnn:main'
[project.gui-scripts]
freesas = 'freesas.app.plot_sas:main'
|