-
Notifications
You must be signed in to change notification settings - Fork 193
/
pyproject.toml
48 lines (42 loc) · 1.62 KB
/
pyproject.toml
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
[project]
name = "pythran"
authors = [{name="Serge Guelton", email="[email protected]"}]
license = {file = "LICENSE"}
description = "Ahead of Time compiler for numeric kernels"
requires-python = ">=3.7"
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: C++',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Code Generators'
]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Homepage = "https://github.com/serge-sans-paille/pythran"
Documentation = "https://pythran.readthedocs.io"
Changelog = "https://pythran.readthedocs.io/en/latest/Changelog.html"
[project.optional-dependencies]
doc = ["numpy", "nbsphinx", "scipy", "guzzle_sphinx_theme"]
test = ["ipython", "nbval", "cython", "wheel", "packaging", "ninja", "meson"]
[project.scripts]
pythran = "pythran.run:run"
pythran-config = "pythran.config:run"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=62"]
[tool.setuptools]
packages = ['pythran', 'pythran.analyses', 'pythran.transformations',
'pythran.optimizations', 'omp', 'pythran.types']
[tool.setuptools.dynamic]
version = {attr = "pythran.version.__version__"}
description = {file = "pythran.version.__descr__"}
readme = {file = ["README.rst"]}
dependencies = {file = ["requirements.txt"]}