about summary refs log tree commit diff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-11-19 16:51:04 -0600
committerFrederick Muriuki Muriithi2024-11-21 11:46:27 -0600
commit95f1e142d2c3d52a7a9174a75c6ee855dbc8a917 (patch)
treec4def1f701801bee26b086d5a7165b7fa9bff5d8 /pyproject.toml
parent2791a60afe5206dcef74a1e264237d10e59d7bca (diff)
downloadgn-libs-95f1e142d2c3d52a7a9174a75c6ee855dbc8a917.tar.gz
Initialise build for the project.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml40
1 files changed, 40 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..9b8d25f
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,40 @@
+# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
+
+[build-system]
+requires = ["setuptools >= 61.0"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "gn-libs"
+dynamic = []
+version = "0.0.0"
+dependencies = [
+    "mysqlclient>=2.0.1"
+]
+requires-python = ">=3.10"
+authors = [
+    {name = "Frederick M. Muriithi", email = "fredmanglis@gmail.com"},
+]
+maintainers = [
+    {name = "Frederick M. Muriithi", email = "fredmanglis@gmail.com"},
+]
+description = "gn-libs: Tools/Utilities for GeneNetwork Projects"
+readme = {file = "README.md", content-type = "text/markdown"}
+license = {file = "LICENSE"}
+keywords = []
+classifiers = [
+    "Development Status :: 3 - Alpha",
+    "Intended Audience :: Developers",
+]
+
+[project.urls]
+Homepage = "https://git.genenetwork.org/gn-libs/"
+Repository = "https://git.genenetwork.org/gn-libs/"
+
+[project.optional-dependencies]
+dev = [
+    "mypy",
+    "pytest",
+    "pylint",
+#    "types-mysqlclient" # enable this once the types make it to guix
+]
\ No newline at end of file