From 7538ef01f3b982748361b2a082877013e7b10b39 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Tue, 5 Mar 2019 22:31:34 -0600 Subject: [PATCH] Add setup.py This will allow building of a wheel for *taiga-back* --- setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..284c2fe9 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import find_packages, setup + +setup( + name='taiga-back', + use_scm_version=True, + description='taiga-back', + url='https://taiga.io/', + license='GPL-3', + packages=find_packages( + exclude=['tests'], + ), +)