Files
xstatic-angular-bootstrap/setup.py
Richard Jones 7a2e736846 Fixes for a packaging error
The xstatic-release script didn't tell the setup.py
to include data files in installation. This release
incorporates that fix (and an unintentional
change to the LICENSE).

This skips to the 8 BUILD because the 7th BUILD was
emergency released to fix the packaging error.

Change-Id: I3223f0f0c4387ad64068c3924eb634df6f0d3dcf
2016-06-27 00:07:05 +00:00

18 lines
574 B
Python

from setuptools import setup, find_packages
# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
long_description = open('README.txt').read()
setup(
name='XStatic-Angular-Bootstrap',
summary="""Angular-Bootstrap 0.11.0 (XStatic packaging standard)""",
description=long_description,
maintainer="Maxime Vidori",
maintainer_email='maxime.vidori@enovance.com',
use_scm_version=True,
setup_requires=['setuptools_scm', 'wheel'],
packages=find_packages(),
include_package_data=True
)