summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--defusedxml/__init__.py2
-rw-r--r--setup.cfg2
-rw-r--r--setup.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/defusedxml/__init__.py b/defusedxml/__init__.py
index 590a5a9..ba79fcf 100644
--- a/defusedxml/__init__.py
+++ b/defusedxml/__init__.py
@@ -39,7 +39,7 @@ def defuse_stdlib():
return defused
-__version__ = "0.5.0"
+__version__ = "0.5.0.dev1"
__all__ = ['DefusedXmlException', 'DTDForbidden', 'EntitiesForbidden',
'ExternalReferenceForbidden', 'NotSupportedError']
diff --git a/setup.cfg b/setup.cfg
index 2d857e9..2f1ddb7 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,5 +2,5 @@
universal = 1
[aliases]
-packages = clean --all egg_info bdist_wheel sdist --format=zip sdist --format=gztar
+packages = clean --all egg_info bdist_wheel sdist --format=gztar
release = packages register upload
diff --git a/setup.py b/setup.py
index 4e49471..6926330 100644
--- a/setup.py
+++ b/setup.py
@@ -39,8 +39,8 @@ setup(
author_email="christian@python.org",
maintainer="Christian Heimes",
maintainer_email="christian@python.org",
- url="https://bitbucket.org/tiran/defusedxml",
- download_url="http://pypi.python.org/pypi/defusedxml",
+ url="https://github.com/tiran/defusedxml",
+ download_url="https://pypi.python.org/pypi/defusedxml",
keywords="xml bomb DoS",
platforms="all",
license="PSFL",