Skip to content

Commit

Permalink
update build process
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Dec 27, 2023
1 parent 33e87c0 commit 19d1484
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 72 deletions.
47 changes: 46 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=46.1.0", "setuptools_scm[toml]>=5", "wheel"]
requires = ["setuptools>=60", "setuptools_scm[toml]>=8", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand All @@ -16,6 +16,51 @@ testpaths = ["tests"]

[project]
name = "alhambra_mixes"
dynamic = ["version"]
description = "Many-component mix library for molecular programming"
authors = [{name = "Constantine Evans", email="[email protected]"}]
license = { file = "LICENCE.txt" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Typing :: Typed"]
dependencies = [
"attrs >= 22.1",
"numpy",
"pandas",
"openpyxl",
"pint >= 0.20",
"tabulate",
"toml",
"typing_extensions >= 4.2"
]
readme = "README.md"

[project.optional-dependencies]
docs = [
"numpydoc",
"matplotlib",
"sphinx-book-theme",
"sphinx-autoapi",
"myst-parser"
]
testing = [
"setuptools",
"pytest",
"pytest-cov"
]


[tool.setuptools.packages.find]
where = ["src"]



[tool.black]
target_version = ["py39"]
Expand Down
71 changes: 0 additions & 71 deletions setup.cfg

This file was deleted.

0 comments on commit 19d1484

Please sign in to comment.