Skip to content

Commit

Permalink
Port all config to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
H0R5E committed Apr 9, 2024
1 parent eb03c23 commit 8957881
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 51 deletions.
46 changes: 40 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,52 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "convergence"
version = "0.5.0"
authors = [
{name = "Mathew Topper", email = "[email protected]"}
]
description = "A Python program to Perform Calculations Associated with a Grid Convergence Study"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering"
]

[project.scripts]
grid-convergence = "convergence.interface:cl_interface"

[project.urls]
Homepage = "https://github.com/Data-Only-Greater/convergence"
Issues = "https://github.com/Data-Only-Greater/convergence/issues"

[tool.coverage.run]
source = "src/convergence"

[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pywintypes",
]
doctest_optionflags = "NORMALIZE_WHITESPACE"

[tool.semantic_release]
version_variables = [
'setup.cfg:version'
version_toml = [
"pyproject.toml:project.version",
]
commit_parser = "emoji"

[tool.setuptools.packages.find]
where = ["src"]
43 changes: 0 additions & 43 deletions setup.cfg

This file was deleted.

2 changes: 0 additions & 2 deletions setup.py

This file was deleted.

0 comments on commit 8957881

Please sign in to comment.