Update with corrected xstatic-release
Change-Id: Ib60d7cd76f00d7959c703063b008273759edf5b3
This commit is contained in:
parent
577f0ce201
commit
4ca4a059f8
@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = XStatic-Bootstrap-SCSS
|
||||
summary = Bootstrap-SCSS 3.3.7 (XStatic packaging standard)
|
||||
description = Bootstrap-SCSS 3.3.7 (XStatic packaging standard)
|
||||
description-file = README.rst
|
||||
maintainer = Radomir Dopieralski
|
||||
maintainer-email = openstack@sheep.art.pl
|
||||
|
24
setup.py
24
setup.py
@ -1,17 +1,25 @@
|
||||
from setuptools import setup, find_packages
|
||||
from xstatic.pkg import bootstrap_scss 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-Bootstrap-SCSS',
|
||||
summary="""Bootstrap-SCSS 3.3.7 (XStatic packaging standard)""",
|
||||
description=long_description,
|
||||
maintainer="Radomir Dopieralski",
|
||||
maintainer_email='openstack@sheep.art.pl',
|
||||
use_scm_version=True,
|
||||
setup_requires=['setuptools_scm', 'wheel'],
|
||||
name=xs.PACKAGE_NAME,
|
||||
version=xs.PACKAGE_VERSION,
|
||||
description=xs.DESCRIPTION,
|
||||
long_description=long_description,
|
||||
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=[],
|
||||
)
|
||||
|
@ -13,7 +13,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
|
||||
|
||||
VERSION = '3.3.7' # version of the packaged files, please use the upstream
|
||||
# version number
|
||||
BUILD = '0' # our package build number, so we can release new builds
|
||||
BUILD = '1' # our package build number, so we can release new builds
|
||||
# with fixes for xstatic stuff.
|
||||
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user