mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 05:31:25 +02:00
30 lines
652 B
Diff
30 lines
652 B
Diff
--- ./setup.py.orig
|
|
+++ ./setup.py
|
|
@@ -1,6 +1,6 @@
|
|
#!/usr/bin/env python
|
|
# coding: utf-8
|
|
-import mistune
|
|
+import mistune1
|
|
from setuptools import setup
|
|
|
|
|
|
@@ -10,7 +10,7 @@
|
|
|
|
|
|
setup(
|
|
- name='mistune',
|
|
+ name='mistune1',
|
|
- version=mistune.__version__,
|
|
+ version=mistune1.__version__,
|
|
url='https://github.com/lepture/mistune',
|
|
author='Hsiaoming Yang',
|
|
@@ -18,7 +18,7 @@
|
|
description='The fastest markdown parser in pure Python',
|
|
long_description=fread('README.rst'),
|
|
license='BSD',
|
|
- py_modules=['mistune'],
|
|
+ py_modules=['mistune1'],
|
|
zip_safe=False,
|
|
platforms='any',
|
|
tests_require=['nose'],
|