Update XStatic-jsencrypt to 2.3.1
Change-Id: Ib282930488904e4d33c8aa1f92e34c4cb3fb0634
This commit is contained in:
parent
5a62fc037e
commit
5526c15f91
@ -1,8 +1,6 @@
|
|||||||
include README.txt
|
include README.txt
|
||||||
recursive-include xstatic/pkg/jsencrypt *
|
recursive-include xstatic *
|
||||||
|
|
||||||
global-exclude *.pyc
|
global-exclude *.pyc
|
||||||
global-exclude *.pyo
|
global-exclude *.pyo
|
||||||
global-exclude *.orig
|
global-exclude *.orig
|
||||||
global-exclude *.rej
|
global-exclude *.rej
|
||||||
|
|
||||||
|
20
setup.cfg
Normal file
20
setup.cfg
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
[metadata]
|
||||||
|
name = XStatic-JSEncrypt
|
||||||
|
description = JSEncrypt 2.3.1 (XStatic packaging standard)
|
||||||
|
description-file = README.rst
|
||||||
|
maintainer = Rob Cresswell
|
||||||
|
maintainer-email = robert.cresswell@outlook.com
|
||||||
|
home-page = http://travistidwell.com/jsencrypt/
|
||||||
|
keywords = jsencrypt xstatic
|
||||||
|
license = MIT
|
||||||
|
zip_safe = False
|
||||||
|
namespace_packages =
|
||||||
|
xstatic
|
||||||
|
xstatic.pkg
|
||||||
|
|
||||||
|
[files]
|
||||||
|
packages =
|
||||||
|
xstatic
|
||||||
|
|
||||||
|
[bdist_wheel]
|
||||||
|
universal = True
|
8
setup.py
8
setup.py
@ -1,11 +1,10 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
from xstatic.pkg import jsencrypt as xs
|
from xstatic.pkg import jsencrypt 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=xs.PACKAGE_NAME,
|
||||||
version=xs.PACKAGE_VERSION,
|
version=xs.PACKAGE_VERSION,
|
||||||
@ -19,9 +18,8 @@ setup(
|
|||||||
url=xs.HOMEPAGE,
|
url=xs.HOMEPAGE,
|
||||||
platforms=xs.PLATFORMS,
|
platforms=xs.PLATFORMS,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
namespace_packages=['xstatic', 'xstatic.pkg', ],
|
namespace_packages=['xstatic', 'xstatic.pkg'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=[], # nothing! :)
|
install_requires=[],
|
||||||
# if you like, you MAY use the 'XStatic' package.
|
|
||||||
)
|
)
|
||||||
|
@ -11,7 +11,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
|
|||||||
# please use a all-lowercase valid python
|
# please use a all-lowercase valid python
|
||||||
# package name
|
# package name
|
||||||
|
|
||||||
VERSION = '2.3.0' # version of the packaged files, please use the upstream
|
VERSION = '2.3.1' # 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 = '0' # our package build number, so we can release new builds
|
||||||
# with fixes for xstatic stuff.
|
# with fixes for xstatic stuff.
|
||||||
@ -24,20 +24,22 @@ CLASSIFIERS = []
|
|||||||
KEYWORDS = '%s xstatic' % NAME
|
KEYWORDS = '%s xstatic' % NAME
|
||||||
|
|
||||||
# XStatic-* package maintainer:
|
# XStatic-* package maintainer:
|
||||||
MAINTAINER = 'Radomir Dopieralski'
|
MAINTAINER = 'Rob Cresswell'
|
||||||
MAINTAINER_EMAIL = 'openstack@sheep.art.pl'
|
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://travistidwell.com/jsencrypt/'
|
HOMEPAGE = 'http://travistidwell.com/jsencrypt/'
|
||||||
|
|
||||||
# this refers to all files:
|
# this refers to all files:
|
||||||
LICENSE = '(same as %s)' % DISPLAY_NAME
|
LICENSE = 'MIT'
|
||||||
|
|
||||||
from os.path import join, dirname
|
from os.path import join, dirname
|
||||||
BASE_DIR = join(dirname(__file__), 'data')
|
BASE_DIR = join(dirname(__file__), 'data')
|
||||||
# linux package maintainers just can point to their file locations like this:
|
# linux package maintainers just can point to their file locations like this:
|
||||||
#BASE_DIR = '/usr/share/javascript/jsencrypt'
|
#BASE_DIR = '/usr/share/javascript/jsencrypt'
|
||||||
|
|
||||||
|
MAIN='jsencrypt.js'
|
||||||
|
|
||||||
LOCATIONS = {
|
LOCATIONS = {
|
||||||
# CDN locations (if no public CDN exists, use an empty dict)
|
# CDN locations (if no public CDN exists, use an empty dict)
|
||||||
# if value is a string, it is a base location, just append relative
|
# if value is a string, it is a base location, just append relative
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user