Skip to content

Commit

Permalink
switch to poetry from setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
cwoac committed Nov 2, 2023
1 parent d032cea commit 29ca60a
Show file tree
Hide file tree
Showing 6 changed files with 782 additions and 28 deletions.
759 changes: 759 additions & 0 deletions poetry.lock

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[tool.poetry]
name = "doenut"
version = "0.1.0"
description = "Design Of Experiments Numerical Utility Toolkit"
authors = ["Ella Gale", "Oliver Matthews"]
license = "MIT"
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "^1.26.1"
pandas = "^2.1.2"
matplotlib = "^3.8.1"
scikit-learn = "^1.3.2"
doepy = "^0.0.1"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
26 changes: 0 additions & 26 deletions setup.py

This file was deleted.

4 changes: 2 additions & 2 deletions doenut/__init__.py → src/doenut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Design of Experiments Numerical Utility Toolkit
"""

__version__ = "0.1.0"
__author__ = "Ella Gale"
from importlib.metadata import version
__version__ = version("doenut")

from . import doenut
from . import designer
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 29ca60a

Please sign in to comment.