@@ -11,10 +11,10 @@ authors = [
11
11
maintainers = [
12
12
{
name =
" Simon J.L. Billinge group" ,
email =
" [email protected] " },
13
13
]
14
- description = " Tools for manipulating and comparing PDF profiles"
14
+ description = " Python package for manipulating and comparing PDF profiles"
15
15
keywords = [' diffpy' , ' pdf' , ' data interpretation' ]
16
16
readme = " README.rst"
17
- requires-python = " >=3.10 , <3.14"
17
+ requires-python = " >=3.11 , <3.14"
18
18
classifiers = [
19
19
' Development Status :: 5 - Production/Stable' ,
20
20
' Environment :: Console' ,
@@ -25,7 +25,6 @@ classifiers = [
25
25
' Operating System :: Microsoft :: Windows' ,
26
26
' Operating System :: POSIX' ,
27
27
' Operating System :: Unix' ,
28
- ' Programming Language :: Python :: 3.10' ,
29
28
' Programming Language :: Python :: 3.11' ,
30
29
' Programming Language :: Python :: 3.12' ,
31
30
' Programming Language :: Python :: 3.13' ,
@@ -49,12 +48,17 @@ dirty_template = "{tag}"
49
48
[tool .setuptools .packages .find ]
50
49
where = [" src" ] # list of folders that contain the packages (["."] by default)
51
50
include = [" *" ] # package names should match these glob patterns (["*"] by default)
52
- exclude = [" tests " ] # exclude packages matching these glob patterns (empty by default)
51
+ exclude = [] # exclude packages matching these glob patterns (empty by default)
53
52
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
54
53
55
54
[tool .setuptools .dynamic ]
56
55
dependencies = {file = [" requirements/pip.txt" ]}
57
56
57
+ [tool .codespell ]
58
+ exclude-file = " .codespell/ignore_lines.txt"
59
+ ignore-words = " .codespell/ignore_words.txt"
60
+ skip = " *.cif,*.dat"
61
+
58
62
[tool .black ]
59
63
line-length = 115
60
64
include = ' \.pyi?$'
0 commit comments