We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0538ee commit 899fe6fCopy full SHA for 899fe6f
setup.py
@@ -1,13 +1,6 @@
1
from sqlalchemy_mptt import __version__
2
from setuptools import setup
3
4
-try:
5
- from pypandoc import convert
6
- read_md = lambda f: convert(f, 'rst')
7
-except ImportError:
8
- print("warning: pypandoc module not found, could not convert Markdown to RST")
9
- read_md = lambda f: open(f, 'r').read()
10
-
11
setup(
12
name='sqlalchemy_mptt',
13
version=__version__,
@@ -21,7 +14,10 @@
21
14
test_suite="nose.collector",
22
15
license="GPL",
23
16
description='SQLAlchemy MPTT mixins (Nested Sets)',
24
- long_description=read_md('README.md'),
17
+ package_data={
18
+ '': ['*.txt', '*.rst', '*.md'],
19
+ },
20
+ long_description="http://github.com/ITCase/sqlalchemy_mptt/",
25
install_requires=[
26
"sqlalchemy",
27
],
0 commit comments