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 e8f6d8566d
1 changed files with 15 additions and 0 deletions

15
setup.py Normal file
View File

@ -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'],
),
setup_requires=[
'setuptools_scm',
],
)