-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
45 lines (38 loc) · 1.3 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name='stylist'
description="Flexible source code style checking tool"
requires-python = '>=3.7, <4'
license = {text = 'BSD 3-Clause License'}
dependencies = ['fparser >= 0.1.2']
dynamic = ['version', 'readme']
keywords = ['linter', 'fortran']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Quality Assurance',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
]
[project.optional-dependencies]
dev = ['check-manifest', 'flake8']
test = ['pytest', 'pytest-cov', 'mypy']
performance = ['pytest', 'pytest-benchmark', 'matplotlib']
docs = ['sphinx < 7.0.0',
'sphinx-autodoc-typehints',
'pydata-sphinx-theme>=0.15.2']
release = ['setuptools', 'wheel', 'twine']
[project.scripts]
stylist = 'stylist.__main__:main'
[project.urls]
homepage = 'https://github.com/MetOffice/stylist/'
documentation = 'https://metoffice.github.io/stylist'
'Bug Reports' = 'https://github.com/MetOffice/stylist/issues'
repository = 'https://github.com/MetOffice/stylist/'
[tool.setuptools.dynamic]
readme = {file = 'README.rst'}
version = {attr = 'stylist.__version__'}
[tool.setuptools.packages.find]
where = ['source']