Skip to content

Commit d51e1b0

Browse files
committed
fix: changed line length to 115
1 parent 3fec1f8 commit d51e1b0

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# As of now, flake8 does not natively support configuration via pyproject.toml
2+
# https://github.com/microsoft/vscode-flake8/issues/135
13
[flake8]
24
exclude =
35
.git,

.isort.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[settings]
2+
# Keep import statement below line_length character limit
23
line_length = 115
34
multi_line_output = 3
45
include_trailing_comma = True

pyproject.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,20 @@ build-backend = "setuptools.build_meta"
66
name = "diffpy.srmise"
77
dynamic=['version', 'dependencies']
88
authors = [
9-
{ name="Simon J.L. Billinge group", email="simon.billinge@gmail.com" },
10-
{name="Luke Granlund", email="granlund@pa.msu.edu"},
9+
{ name="Simon Billinge", email="sb2896@columbia.edu" },
1110
]
1211
maintainers = [
13-
{ name="Simon J.L. Billinge group", email="simon.billinge@gmail.com" },
12+
{ name="Simon Billinge", email="sb2896@columbia.edu" },
1413
]
1514
description = "Peak extraction and peak fitting tool for atomic pair distribution functions."
16-
keywords = ['peak extraction fitting PDF AIC multimodeling']
15+
keywords = ['peak extraction', 'fitting', 'PDF', 'AIC', 'multimodeling']
1716
readme = "README.rst"
1817
requires-python = ">=3.11, <3.14"
1918
classifiers = [
20-
'Development Status :: 3 - Alpha',
19+
'Development Status :: 5 - Production/Stable',
2120
'Environment :: Console',
2221
'Intended Audience :: Developers',
2322
'Intended Audience :: Science/Research',
24-
'Intended Audience :: Education',
2523
'License :: OSI Approved :: BSD License',
2624
'Operating System :: MacOS :: MacOS X',
2725
'Operating System :: Microsoft :: Windows',
@@ -32,7 +30,6 @@ classifiers = [
3230
'Programming Language :: Python :: 3.13',
3331
'Topic :: Scientific/Engineering :: Physics',
3432
'Topic :: Scientific/Engineering :: Chemistry',
35-
'Topic :: Software Development :: Libraries',
3633
]
3734

3835
[project.urls]
@@ -45,9 +42,6 @@ template = "{tag}"
4542
dev_template = "{tag}"
4643
dirty_template = "{tag}"
4744

48-
[project.scripts]
49-
srmise = "diffpy.srmise.applications.extract:main"
50-
5145
[tool.setuptools.packages.find]
5246
where = ["src"] # list of folders that contain the packages (["."] by default)
5347
include = ["*"] # package names should match these glob patterns (["*"] by default)

0 commit comments

Comments
 (0)