From 98b9d3def66d1ffc76cf82b840c5cfe0af98d5ae Mon Sep 17 00:00:00 2001 From: adi Date: Sun, 23 Apr 2017 18:13:37 +0200 Subject: [PATCH] setuptools related --- markdownx/__init__.py | 9 +++++---- setup.py | 5 ++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/markdownx/__init__.py b/markdownx/__init__.py index 483a82c..e1e3d10 100755 --- a/markdownx/__init__.py +++ b/markdownx/__init__.py @@ -35,8 +35,8 @@ Key features * Multiple editors per page. * Django Admin support. -.. image:: https://github.com/adi-/django-markdownx/raw/master/django-markdownx-preview.gif?raw=true - :target: https://github.com/adi-/django-markdownx +.. image:: https://github.com/neutronX/django-markdownx/raw/master/django-markdownx-preview.gif?raw=true + :target: https://github.com/neutronX/django-markdownx :align: center :alt: django-markdownx preview @@ -44,7 +44,7 @@ Key features .. _Django: https://www.djangoproject.com .. |PyPi_Status| image:: https://img.shields.io/pypi/status/django-markdownx.svg -.. |Build_Status| image:: https://img.shields.io/travis/adi-/django-markdownx.svg +.. |Build_Status| image:: https://img.shields.io/travis/neutronX/django-markdownx.svg .. |Format| image:: https://img.shields.io/pypi/format/django-markdownx.svg .. |Supported_versions_of_Python| image:: https://img.shields.io/pypi/pyversions/django-markdownx.svg .. |Supported_versions_of_Django| image:: https://img.shields.io/badge/Django-1.8,%201.9,%201.10-green.svg @@ -61,7 +61,8 @@ Key features # ~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= # Documentations # ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~- -__author__ = 'Adi' +__author__ = 'aaadeji' +__author_email__ = 'aaadeji@gmail.com' __description__ = 'A comprehensive Markdown editor built for Django.' __credits__ = 'Adi, Pouria Hadjibagheri' __copyright__ = 'Copyright 2017' diff --git a/setup.py b/setup.py index e362760..1217d18 100755 --- a/setup.py +++ b/setup.py @@ -50,6 +50,7 @@ if 'vagrant' in str(environ): def get_meta(): values = { 'author', + 'author_email', 'description', 'credits', 'copyright', @@ -97,11 +98,12 @@ setup( version=metadata.get('version'), packages=find_packages(), author=metadata.get('author'), + author_email=metadata.get('author_email'), maintainer=metadata.get('maintainer'), include_package_data=True, description=metadata.get('description'), long_description=metadata.get('doc'), - url='https://github.com/adi-/django-markdownx', + url='https://github.com/neutronX/django-markdownx', license=metadata.get('license'), classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -111,6 +113,7 @@ setup( 'Framework :: Django :: 1.8', 'Framework :: Django :: 1.9', 'Framework :: Django :: 1.10', + 'Framework :: Django :: 1.11', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent',