aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-08-31 16:19:19 -0400
committerBobby <[email protected]>2022-08-31 16:19:19 -0400
commit1e79ab11dd4ffeb2805cbc3422c4e4219fdc7191 (patch)
tree79ef895e79159ac4c2faa6840daf4cce79efd351 /pyproject.toml
parentbf27c453269d2a6958cb4b96d78a2cdebcfbdf81 (diff)
downloadedify-1e79ab11dd4ffeb2805cbc3422c4e4219fdc7191.tar.xz
edify-1e79ab11dd4ffeb2805cbc3422c4e4219fdc7191.zip
Updated Config
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml70
1 files changed, 66 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml
index a51acf9..162a1ae 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,10 +1,72 @@
-[build-system]
-requires = [
- "setuptools>=30.3.0",
- "wheel",
+[tool.poetry]
+name = "edify"
+version = "0.1.0"
+homepage = "https://github.com/luciferreeves/edify"
+description = "Regular Expressions Made Simple."
+authors = ["Bobby <[email protected]>"]
+readme = "README.md"
+license = "Apache Software License 2.0"
+
+packages = [
+ { include = "edify" },
+]
+
+[tool.poetry.dependencies]
+python = "^3.10"
+
+[tool.poetry.dev-dependencies]
+mypy = "^0.971"
+pytest = "^7.1.2"
+black = "^22.6.0"
+flake8 = "^5.0.4"
+isort = "^5.10.1"
+mkdocs = "^1.3.1"
+mkdocs-include-markdown-plugin = "^3.6.1"
+mkdocs-material = "^8.3.9"
+mkdocstrings = { version = "^0.19.0", extras = ["python"] }
+mkdocs-material-extensions = "^1.0.3"
+pytest-cov = "^3.0.0"
+bump2version = "^1.0.1"
+pre-commit = "^2.20.0"
+twine = "^4.0.1"
+tox = "^3.25.1"
+
+[tool.pytest.ini_options]
+minversion = "6.0"
+addopts = "--basetemp=testtemp"
+
+[tool.coverage.run]
+omit = ["*/test/*", "**/conftest.py"]
+
+[tool.coverage.report]
+omit = ["*/test/*"]
+exclude_lines = [
+ "pragma: no cover",
+ "@abstractmethod",
+ "@abc.abstractmethod",
+ "def __repr__",
+ "if .*DEBUG",
+ "raise AssertionError",
+ "raise NotImplementedError"
]
[tool.black]
line-length = 140
target-version = ['py36']
skip-string-normalization = true
+
+[tool.isort]
+profile = "black"
+line_length = 100
+skip_gitignore = true
+known_typing="typing"
+sections= ["FUTURE","STDLIB","FIRSTPARTY","THIRDPARTY","LOCALFOLDER","TYPING"]
+
+
+[build-system]
+requires = [
+ "poetry-core>=1.0.0",
+ "setuptools>=30.3.0",
+ "wheel",
+]
+build-backend = "poetry.core.masonry.api"