From 30cedd16ee93d50c2bca96b290ff8bdbdc2cf072 Mon Sep 17 00:00:00 2001 From: jgunstone Date: Thu, 29 Feb 2024 16:16:04 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20add=20`pyproject.toml`=20and=20?= =?UTF-8?q?=5F=5Finit=5F=5F.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/bsdd/__init__.py | 1 + src/bsdd/pyproject.toml | 42 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 src/bsdd/__init__.py create mode 100644 src/bsdd/pyproject.toml diff --git a/src/bsdd/__init__.py b/src/bsdd/__init__.py new file mode 100644 index 0000000000..e3ef289dcf --- /dev/null +++ b/src/bsdd/__init__.py @@ -0,0 +1 @@ +from .bsdd import * \ No newline at end of file diff --git a/src/bsdd/pyproject.toml b/src/bsdd/pyproject.toml new file mode 100644 index 0000000000..8835cd4509 --- /dev/null +++ b/src/bsdd/pyproject.toml @@ -0,0 +1,42 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "bsdd" +dynamic = ["version"] +description = '' +readme = "README.md" +requires-python = ">=3.8" +keywords = ["building smart data dictionaries"] +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] +dependencies = ["requests"] + +[project.urls] +Documentation = "https://github.com/IfcOpenShell/src/bsdd#readme" +Issues = "https://github.com/IfcOpenShell/issues" +Source = "https://github.com/IfcOpenShell/src/bsdd" + + +[tool.hatch.envs.default] +dependencies = [ + "coverage[toml]>=6.5", + "pytest", +] + +[[tool.hatch.envs.all.matrix]] +python = ["3.8", "3.9", "3.10", "3.11", "3.12"] + + +[tool.pytest.ini_options] +pythonpath = [".", "src"] \ No newline at end of file