From 1dde74203bbbf42c3b1a3736127745bc45ca1d54 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 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..471e2f69 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +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', 'tests.*'], + ), + setup_requires=[ + 'setuptools_scm', + ], +)