aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-30 18:39:05 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-30 18:39:05 +0100
commit47116a4682edb1f22d00da06802cc3eff40bf5bd (patch)
tree1f8bcbb1b86e112eefed5a6dd4fe0ea1541183d7 /pyproject.toml
parentMerge branch 'master' of github.com:GjjvdBurg/PyGenSVM (diff)
downloadpygensvm-47116a4682edb1f22d00da06802cc3eff40bf5bd.tar.gz
pygensvm-47116a4682edb1f22d00da06802cc3eff40bf5bd.zip
Update documentation
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..1668a61
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,19 @@
+[tool.poetry]
+name = "gensvm"
+version = "0.2.4"
+description = "Python package for the GenSVM classifier"
+authors = ["Gertjan van den Burg <gertjanvandenburg@gmail.com>"]
+license = "GPL-2.0+"
+
+[tool.poetry.dependencies]
+python = "^3.7"
+scikit-learn = "^0.21.2"
+numpy = "^1.16"
+
+[tool.poetry.dev-dependencies]
+Sphinx = "=1.6.5"
+sphinx_rtd_theme = "^0.4.3"
+
+[build-system]
+requires = ["poetry>=0.12"]
+build-backend = "poetry.masonry.api"