diff options
author | Joris | 2020-06-06 17:44:26 +0200 |
---|---|---|
committer | Joris | 2020-06-06 19:54:03 +0200 |
commit | 1595e0de940a86a7810df0e02e43838d97c0d846 (patch) | |
tree | 9701eeec0d98baa9f6044b1911df68e4c8539819 /setup.py | |
parent | 6b9195000eb5404c247288b384d7ca2bacc1ab23 (diff) |
Provide nix build
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..31fac1e --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +import setuptools + +setuptools.setup( + name="todo", + version="0.1.0", + author="Joris Guyonvarch", + description="Context based next-action list manager", + long_description_content_type="text/markdown", + url="https://gitlab.com/guyonvarch/todo/", + packages=setuptools.find_packages(), + scripts=['bin/todo'] +) |