Skip to content

Commit

Permalink
Bump version for PyPi release
Browse files Browse the repository at this point in the history
  • Loading branch information
gatkin committed Jun 5, 2018
1 parent 0cbc21a commit b1a92e4
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
"""Defines the setup for the declxml library"""
from io import open
import os.path
from setuptools import setup


readme_path = os.path.join(os.path.dirname(__file__), 'README.md')
with open(readme_path, encoding='utf-8') as readme:
long_description = readme.read()


setup(
name='declxml',
description='Declarative XML processing library',
version='0.11.0',
long_description=long_description,
long_description_content_type='text/markdown',
version='1.0',
url='http://declxml.readthedocs.io/',
project_urls={
'Documentation': 'http://declxml.readthedocs.io/',
'Source': 'https://github.com/gatkin/declxml',
'Tracker': 'https://github.com/gatkin/declxml/issues',
},
author='Greg Atkin',
author_email='greg.scott.atkin@gmail.com',
license='MIT',
Expand Down

0 comments on commit b1a92e4

Please sign in to comment.