diff options
author | MR Lemon <matt@matthewlemon> | 2020-05-16 21:17:25 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-05-16 21:17:32 +0100 |
commit | a344ca599d4e972bfc818d2bff492d60540ba445 (patch) | |
tree | a0155c1fbcc196c16e1b7b6546b937622e6a3db5 /pyproject.toml | |
parent | c7f776e9c7009917ab99881b57f05b5aa910b30c (diff) |
prep for bump to 1.0.4 - nox tests, actions, etc
Diffstat (limited to '')
-rw-r--r-- | pyproject.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..051725d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[build-system] +requires = ["setuptools", "wheel"] + +[tool.poetry] +name = "datamaps" +version = "1.0.4" +homepage = "https://github.com/hammerheadlemon/datamaps" +repository = "https://github.com/hammerheadlemon/datamaps" +license = "MIT" +readme = "README.md" +description = "Collect and clean data using Excel spreadsheets." +authors = ["Matthew Lemon <matt@matthewlemon.com>"] + +[tool.poetry.dependencies] +python = "^3.7.0" +python-dateutil = "^2.8.1" +click = "^7.1.2" +#bcompiler-engine = "^1.0.4" +bcompiler-engine = { path = "C:/Users/lemon/code/python/bcompiler-engine"} + +[tool.poetry.dev-dependencies] +pytest = "^5.4.1" +pytest-cov = "^2.7.1" +coverage = "^5.1" +nox = "^2019.11.9" +pyinstaller = "^3.6" +wheel = "^0.34.2" + +[tools.black] +max-length-length=88 |