|
1 | 1 | [project] |
2 | | -name = 'raysect' |
3 | | -version = '0.9.0' |
4 | | -#url='http://www.raysect.org' |
5 | | -#author='Dr Alex Meakins et al.' |
6 | | -#author_email='developers@raysect.org' |
7 | | -#description='A Ray-tracing Framework for Science and Engineering' |
8 | | -#license='BSD-3-Clause' |
9 | | -#license-files = ["LICENSE.txt"] |
10 | | -#classifiers=[ |
11 | | -# 'Development Status :: 5 - Production/Stable', |
12 | | -# 'Intended Audience :: Science/Research', |
13 | | -# 'Intended Audience :: Education', |
14 | | -# 'Intended Audience :: Developers', |
15 | | -# 'Natural Language :: English', |
16 | | -# 'Operating System :: POSIX :: Linux', |
17 | | -# 'Programming Language :: Cython', |
18 | | -# 'Programming Language :: Python :: 3', |
19 | | -# 'Topic :: Multimedia :: Graphics :: 3D Rendering', |
20 | | -# 'Topic :: Scientific/Engineering :: Physics' |
21 | | -#] |
| 2 | +name = "raysect" |
| 3 | +version = "0.9.0" |
| 4 | +requires-python = ">=3.8" |
| 5 | +authors = [{name = "Dr Alex Meakins et al.", email = "developers@raysect.org"}] |
| 6 | +description = "A Ray-tracing Framework for Science and Engineering" |
| 7 | +readme = "README.txt" |
| 8 | +license = "BSD-3-Clause" |
| 9 | +license-files = ["LICENSE.txt"] |
| 10 | +classifiers = [ |
| 11 | + "Development Status :: 5 - Production/Stable", |
| 12 | + "Intended Audience :: Science/Research", |
| 13 | + "Intended Audience :: Education", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "Natural Language :: English", |
| 16 | + "Operating System :: POSIX :: Linux", |
| 17 | + "Programming Language :: Cython", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Topic :: Multimedia :: Graphics :: 3D Rendering", |
| 20 | + "Topic :: Scientific/Engineering :: Physics" |
| 21 | +] |
| 22 | + |
| 23 | +[project.urls] |
| 24 | +Homepage = "https://www.raysect.org" |
| 25 | +Repository = "https://github.com/raysect/source" |
| 26 | +Issues = "https://github.com/raysect/source/issues" |
| 27 | +Changelog = "https://github.com/raysect/source/blob/master/CHANGELOG.txt" |
22 | 28 |
|
23 | 29 | [build-system] |
24 | | -requires = ['meson-python', 'wheel', 'oldest-supported-numpy', 'cython<3.0'] |
25 | | -build-backend = 'mesonpy' |
| 30 | +requires = ["meson-python", "setuptools", "wheel", "oldest-supported-numpy", "cython<3.0"] |
| 31 | +build-backend = "mesonpy" |
0 commit comments