Skip to content

Commit

Permalink
pyproject fixup (bad grouping)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Kienzle committed Oct 8, 2024
1 parent 962de3a commit c849b4e
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,57 +1,57 @@
[project]
name = "periodictable"
dynamic = ["version"]
description = "Extensible periodic table of the elements"
readme = "README.rst"
authors = [
{ name = "Paul Kienzle", email = "[email protected]" },
]
license = { file = "LICENSE.txt" }
dependencies = [
"pyparsing", "numpy",
]
name = "periodictable"
dynamic = ["version"]
description = "Extensible periodic table of the elements"
readme = "README.rst"
authors = [
{ name = "Paul Kienzle", email = "[email protected]" },
]
license = { file = "LICENSE.txt" }
dependencies = [
"pyparsing", "numpy",
]

#[project.optional-dependencies]
#dev = [
# "build",
# "pytest",
# "pytest-cov",
# "matplotlib",
# "sphinx",
#]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"

classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"build",
"pytest",
"pytest-cov",
"matplotlib",
"sphinx",
]

[project.urls]
documentation = "https://periodictable.readthedocs.io"
repository = "hhttps://github.com/pkienzle/periodictable"
documentation = "https://periodictable.readthedocs.io"
repository = "hhttps://github.com/pkienzle/periodictable"

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
version = { attr = "periodictable.__version__" }
version = { attr = "periodictable.__version__" }

[tool.setuptools]
packages = ["periodictable"]
packages = ["periodictable"]

[tool.pytest.ini_options]
addopts = ["--doctest-modules", "--doctest-glob=*.rst", "--cov=periodictable"]
doctest_optionflags = "ELLIPSIS"
pythonpath = ["doc/sphinx"]
testpaths = ["periodictable", "test", "doc/sphinx/guide"]
python_files = "*.py"
python_classes = "NoClassTestsWillMatch"
python_functions = ["test", "*_test", "test_*"]
addopts = ["--doctest-modules", "--doctest-glob=*.rst", "--cov=periodictable"]
doctest_optionflags = "ELLIPSIS"
pythonpath = ["doc/sphinx"]
testpaths = ["periodictable", "test", "doc/sphinx/guide"]
python_files = "*.py"
python_classes = "NoClassTestsWillMatch"
python_functions = ["test", "*_test", "test_*"]

0 comments on commit c849b4e

Please sign in to comment.