-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
48 lines (42 loc) · 999 Bytes
/
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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[project]
name = "deepmodeling_sphinx"
dynamic = ["version"]
description = "Sphinx extension for DeepModeling projects."
authors = [
{name = "DeepModeling"},
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
'sphinx',
'minify-html',
'jsmin',
'cssmin',
'jinja2',
]
requires-python = ">=3.7"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/deepmodeling/deepmodeling_sphinx"
documentation = "https://docs.deepmodeling.com/projects/deepmodeling-sphinx/"
repository = "https://github.com/deepmodeling/deepmodeling_sphinx"
[tool.setuptools.package-data]
deepmodeling_sphinx = [
'banner.html',
'banner.css',
'banner.js',
'dark_rtd.css',
]
[tool.setuptools_scm]
[tool.isort]
profile = "black"
[tool.ruff]
select = [
"I", # isort
]