Skip to content

Commit

Permalink
remove pandoc hack, bump to 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jerch committed Feb 9, 2020
1 parent f4ffae3 commit 2e0c19a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
from setuptools import setup, find_packages

try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError, RuntimeError):
long_description = ''
with open('README.md', 'r') as f:
long_description = f.read()

setup(
name='django-computedfields',
packages=find_packages(exclude=['example']),
include_package_data=True,
install_requires=['six'],
version='0.0.12',
version='0.0.13',
license='MIT',
description='autoupdated database fields for model methods',
long_description=long_description,
long_description_content_type='text/markdown',
author='netzkolchose',
author_email='j.breitbart@netzkolchose.de',
url='https://github.com/netzkolchose/django-computedfields',
download_url='https://github.com/netzkolchose/django-computedfields/archive/0.0.11.tar.gz',
download_url='https://github.com/netzkolchose/django-computedfields/archive/0.0.13.tar.gz',
keywords=['django', 'method', 'decorator', 'autoupdate', 'persistent', 'field'],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 2e0c19a

Please sign in to comment.