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
description = mdi 1.6.50 (XStatic packaging standard)
description-file = README.rst
maintainer = Diana Whitten
maintainer-email = hurgleburgler@gmail.com
maintainer = Rob Cresswell
maintainer-email = robert.cresswell@outlook.com
home-page = http://materialdesignicons.com
keywords = material design icons webfont mdi xstatic
license = SIL OFL 1.1

View File

@ -1,17 +1,25 @@
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
# it to generate your project's PyPI page.
long_description = open('README.txt').read()
setup(
name='XStatic-mdi',
description="""mdi 1.6.50 (XStatic packaging standard)""",
name=xs.PACKAGE_NAME,
version=xs.PACKAGE_VERSION,
description=xs.DESCRIPTION,
long_description=long_description,
maintainer="Diana Whitten",
maintainer_email='hurgleburgler@gmail.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=[],
)

View File

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