Fix build number, maintainer and re-gen with latest xstatic-release

This hasn't actually been released, so the build number should be 0,
but there is a tag in the main repository for 1.6.50.1 so we need to
mark this as build 2.

Change-Id: I5f9efd8d3c4cc4d29d42d1d6de1552029f6cacbb
This commit is contained in:
Rob Cresswell 2016-08-22 11:58:01 +01:00 committed by Richard Jones
parent e9b91068c0
commit 201f4fdcb4
3 changed files with 19 additions and 11 deletions

View File

@ -2,8 +2,8 @@
name = XStatic-mdi name = XStatic-mdi
description = mdi 1.6.50 (XStatic packaging standard) description = mdi 1.6.50 (XStatic packaging standard)
description-file = README.rst description-file = README.rst
maintainer = Diana Whitten maintainer = Rob Cresswell
maintainer-email = hurgleburgler@gmail.com maintainer-email = robert.cresswell@outlook.com
home-page = http://materialdesignicons.com home-page = http://materialdesignicons.com
keywords = material design icons webfont mdi xstatic keywords = material design icons webfont mdi xstatic
license = SIL OFL 1.1 license = SIL OFL 1.1

View File

@ -1,17 +1,25 @@
from setuptools import setup, find_packages 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()
setup( setup(
name='XStatic-mdi', name=xs.PACKAGE_NAME,
description="""mdi 1.6.50 (XStatic packaging standard)""", version=xs.PACKAGE_VERSION,
description=xs.DESCRIPTION,
long_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(),
include_package_data=True namespace_packages=['xstatic', 'xstatic.pkg'],
include_package_data=True,
zip_safe=False,
install_requires=[],
) )

View File

@ -28,8 +28,8 @@ CLASSIFIERS = []
KEYWORDS = 'material design icons webfont mdi xstatic' KEYWORDS = 'material design icons webfont mdi xstatic'
# XStatic-* package maintainer: # XStatic-* package maintainer:
MAINTAINER = 'Diana Whitten' MAINTAINER = 'Rob Cresswell'
MAINTAINER_EMAIL = 'hurgleburgler@gmail.com' MAINTAINER_EMAIL = 'robert.cresswell@outlook.com'
# this refers to the project homepage of the stuff we packaged: # this refers to the project homepage of the stuff we packaged:
HOMEPAGE = 'http://materialdesignicons.com' HOMEPAGE = 'http://materialdesignicons.com'