Update with corrected xstatic-release

Change-Id: Ib72730b43676c54fe42c7cbb04d06644024903ab
This commit is contained in:
Richard Jones 2016-09-07 13:23:28 +10:00
parent 79165209e6
commit c9bbd6a3d1
2 changed files with 18 additions and 10 deletions

View File

@ -1,9 +1,9 @@
[metadata]
name = XStatic-Angular-Bootstrap
description = Angular-Bootstrap 0.11.0 (XStatic packaging standard)
description = Angular-Bootstrap 1.3.3 (XStatic packaging standard)
description-file = README.rst
maintainer = Maxime Vidori
maintainer-email = maxime.vidori@enovance.com
maintainer = Rob Cresswell
maintainer-email = robert.cresswell@outlook.com
home-page = http://angular-ui.github.io/bootstrap/
keywords = angular_bootstrap xstatic
license = MIT

View File

@ -1,17 +1,25 @@
from setuptools import setup, find_packages
from xstatic.pkg import angular_bootstrap as xs
# 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',
description="""Angular-Bootstrap 0.11.0 (XStatic packaging standard)""",
name=xs.PACKAGE_NAME,
version=xs.PACKAGE_VERSION,
description=xs.DESCRIPTION,
long_description=long_description,
maintainer="Maxime Vidori",
maintainer_email='maxime.vidori@enovance.com',
use_scm_version=True,
setup_requires=['setuptools_scm', 'wheel'],
classifiers=xs.CLASSIFIERS,
keywords=xs.KEYWORDS,
maintainer=xs.MAINTAINER,
maintainer_email=xs.MAINTAINER_EMAIL,
license=xs.LICENSE,
url=xs.HOMEPAGE,
platforms=xs.PLATFORMS,
packages=find_packages(),
include_package_data=True
namespace_packages=['xstatic', 'xstatic.pkg'],
include_package_data=True,
zip_safe=False,
install_requires=[],
)