Add setup.py

This will allow building of a wheel for *taiga-back*
Dustin 2019-03-05 22:31:34 -06:00
parent 58d9351bf5
commit 7538ef01f3
1 changed files with 12 additions and 0 deletions

12
setup.py Normal file
View File

@ -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'],
),
)