Skip to content

Commit

Permalink
Moved to pyproject.toml setup
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjameshandley committed Jun 26, 2023
1 parent fe8cdf3 commit 917b7f6
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 62 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ unimpeded: Universal model comparison & parameter estimation over diverse datase
==================================================================================
:unimpeded: Universal model comparison & parameter estimation over diverse datasets
:Author: Will Handley
:Version: 1.0.0a0
:Version: 0.0.0
:Homepage: https://github.com/handley-lab/unimpeded
:Documentation: http://unimpeded.readthedocs.io/

Expand Down
44 changes: 44 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "unimpeded"
dynamic = ["version"]
authors = [
{ name="Will Handley", email="[email protected]" },
]
description = "Universal model comparison & parameter estimation over diverse datasets"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"anesthetic>=2.0.0b40"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]

[project.urls]
"Homepage" = "https://github.com/handley-lab/unimpeded"
"Bug Tracker" = "https://github.com/handley-lab/unimpeded/issues"
"Documentation" = "https://unimpeded.readthedocs.io/en/latest/"

[project.optional-dependencies]
docs = ["sphinx", "sphinx_rtd_theme", "numpydoc"]
test = ["pytest", "pytest-cov", "flake8", "pydocstyle", "packaging", "pre-commit"]

[tool.setuptools.dynamic]
version = {attr = "unimpeded._version.__version__"}
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[options]
packages = find:
include_package_data = True
60 changes: 0 additions & 60 deletions setup.py

This file was deleted.

1 change: 1 addition & 0 deletions unimpeded/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.0

0 comments on commit 917b7f6

Please sign in to comment.