aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--datamaps/__init__.py2
-rw-r--r--pyproject.toml10
2 files changed, 10 insertions, 2 deletions
diff --git a/datamaps/__init__.py b/datamaps/__init__.py
index 3d30a5f..f6d1f10 100644
--- a/datamaps/__init__.py
+++ b/datamaps/__init__.py
@@ -1 +1 @@
-__version__ = "1.1.8"
+__version__ = "1.1.9"
diff --git a/pyproject.toml b/pyproject.toml
index 6625b9b..de7f755 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,11 +4,19 @@ build-backend = "hatchling.build"
[project]
name = "datamaps"
-version = "1.1.8"
+version = "1.1.9"
authors = [
{ name="Matthew Lemon", email="matt@matthewlemon.com" },
]
description='Collect and clean data using Excel spreadsheets.'
+entry_points={'console_scripts': [
+ 'datamaps = datamaps.main:cli'
+]},
+install_requires=[
+ 'click',
+ 'python-dateutil',
+ 'bcompiler-engine>=1.1.5'
+],
readme = "README.md"
requires_python = ">=3.7"
classifiers=[