Merge pull request #1 from ThomasWaldmann/updates

Updates
This commit is contained in:
TW 2018-09-18 23:48:42 +02:00 committed by GitHub
commit b0a560b85c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6255 additions and 5036 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*.pyc
*.pyo
dist/
XStatic_jQuery.egg-info/
MANIFEST
.DS_Store
.orig
.rej

View File

@ -1,8 +0,0 @@
.*\.py[co]$
^dist/
^XStatic_jQuery.egg-info/
^MANIFEST$
.DS_Store
.orig$
.rej$
.~$

View File

@ -2,7 +2,8 @@ from xstatic.pkg import jquery 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()
with open('README.txt') as f:
long_description = f.read()
from setuptools import setup, find_packages

View File

@ -11,7 +11,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
# please use a all-lowercase valid python
# package name
VERSION = '1.10.2' # version of the packaged files, please use the upstream
VERSION = '1.12.4' # version of the packaged files, please use the upstream
# version number
BUILD = '1' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
@ -28,7 +28,7 @@ MAINTAINER = 'Thomas Waldmann'
MAINTAINER_EMAIL = 'tw@waldmann-edv.de'
# this refers to the project homepage of the stuff we packaged:
HOMEPAGE = 'http://jquery.com/'
HOMEPAGE = 'https://jquery.com/'
# this refers to all files:
LICENSE = '(same as %s)' % DISPLAY_NAME

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long