Update XStatic-MDI to 1.6.50.1
Change-Id: I39a0644c51b231daa4e6e13d29ce5f90893ba40f
This commit is contained in:
parent
9152b6b52b
commit
29bc27f557
@ -1,6 +1,5 @@
|
|||||||
include README.txt
|
include README.txt
|
||||||
recursive-include xstatic/pkg/mdi *
|
recursive-include xstatic *
|
||||||
|
|
||||||
global-exclude *.pyc
|
global-exclude *.pyc
|
||||||
global-exclude *.pyo
|
global-exclude *.pyo
|
||||||
global-exclude *.orig
|
global-exclude *.orig
|
||||||
|
20
setup.cfg
Normal file
20
setup.cfg
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
[metadata]
|
||||||
|
name = XStatic-mdi
|
||||||
|
summary = mdi 1.4.57 (XStatic packaging standard)
|
||||||
|
description-file = README.rst
|
||||||
|
maintainer = Diana Whitten
|
||||||
|
maintainer-email = hurgleburgler@gmail.com
|
||||||
|
home-page = http://materialdesignicons.com
|
||||||
|
keywords = material design icons webfont mdi xstatic
|
||||||
|
license = (same as mdi)
|
||||||
|
zip_safe = False
|
||||||
|
namespace_packages =
|
||||||
|
xstatic
|
||||||
|
xstatic.pkg
|
||||||
|
|
||||||
|
[files]
|
||||||
|
packages =
|
||||||
|
xstatic
|
||||||
|
|
||||||
|
[bdist_wheel]
|
||||||
|
universal = True
|
28
setup.py
28
setup.py
@ -1,27 +1,17 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
from xstatic.pkg import mdi 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()
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=xs.PACKAGE_NAME,
|
name='XStatic-mdi',
|
||||||
version=xs.PACKAGE_VERSION,
|
summary="""mdi 1.4.57 (XStatic packaging standard)""",
|
||||||
description=xs.DESCRIPTION,
|
description=long_description,
|
||||||
long_description=long_description,
|
maintainer="Diana Whitten",
|
||||||
classifiers=xs.CLASSIFIERS,
|
maintainer_email='hurgleburgler@gmail.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(),
|
||||||
namespace_packages=['xstatic', 'xstatic.pkg', ],
|
include_package_data=True
|
||||||
include_package_data=True,
|
|
||||||
zip_safe=False,
|
|
||||||
install_requires=[],
|
|
||||||
)
|
)
|
||||||
|
@ -17,7 +17,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
|
|||||||
|
|
||||||
VERSION = '1.6.50' # version of the packaged files, please use the upstream
|
VERSION = '1.6.50' # version of the packaged files, please use the upstream
|
||||||
# version number
|
# 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.
|
# with fixes for xstatic stuff.
|
||||||
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi
|
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@function char($character-code) {
|
@function char($character-code) {
|
||||||
@if function-exists("selector-append") {
|
@if function-exists("selector-append") {
|
||||||
@return unquote("\"\\#{$character-code}\"");
|
@return unquote("\"\\#{$character-code}\"");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user