Update with corrected xstatic-release
Change-Id: Ib72730b43676c54fe42c7cbb04d06644024903ab
This commit is contained in:
parent
79165209e6
commit
c9bbd6a3d1
@ -1,9 +1,9 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = XStatic-Angular-Bootstrap
|
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
|
description-file = README.rst
|
||||||
maintainer = Maxime Vidori
|
maintainer = Rob Cresswell
|
||||||
maintainer-email = maxime.vidori@enovance.com
|
maintainer-email = robert.cresswell@outlook.com
|
||||||
home-page = http://angular-ui.github.io/bootstrap/
|
home-page = http://angular-ui.github.io/bootstrap/
|
||||||
keywords = angular_bootstrap xstatic
|
keywords = angular_bootstrap xstatic
|
||||||
license = MIT
|
license = MIT
|
||||||
|
22
setup.py
22
setup.py
@ -1,17 +1,25 @@
|
|||||||
from setuptools import setup, find_packages
|
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
|
# The README.txt file should be written in reST so that PyPI can use
|
||||||
# it to generate your project's PyPI page.
|
# it to generate your project's PyPI page.
|
||||||
long_description = open('README.txt').read()
|
long_description = open('README.txt').read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='XStatic-Angular-Bootstrap',
|
name=xs.PACKAGE_NAME,
|
||||||
description="""Angular-Bootstrap 0.11.0 (XStatic packaging standard)""",
|
version=xs.PACKAGE_VERSION,
|
||||||
|
description=xs.DESCRIPTION,
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
maintainer="Maxime Vidori",
|
classifiers=xs.CLASSIFIERS,
|
||||||
maintainer_email='maxime.vidori@enovance.com',
|
keywords=xs.KEYWORDS,
|
||||||
use_scm_version=True,
|
maintainer=xs.MAINTAINER,
|
||||||
setup_requires=['setuptools_scm', 'wheel'],
|
maintainer_email=xs.MAINTAINER_EMAIL,
|
||||||
|
license=xs.LICENSE,
|
||||||
|
url=xs.HOMEPAGE,
|
||||||
|
platforms=xs.PLATFORMS,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True
|
namespace_packages=['xstatic', 'xstatic.pkg'],
|
||||||
|
include_package_data=True,
|
||||||
|
zip_safe=False,
|
||||||
|
install_requires=[],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user