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 53b5bef commit 38d866fCopy full SHA for 38d866f
setup.py
100644
100755
@@ -1,14 +1,19 @@
1
-from setuptools import setup
+__VERSION__ = '1.0.1'
2
3
-version = '1.0'
+from setuptools import setup
4
+try:
5
+ import pypandoc
6
+ long_description = pypandoc.convert('README.md', 'rst')
7
+except ImportError:
8
+ long_description = None
9
10
setup(
11
name='python-editor',
- version=version,
12
+ version=__VERSION__,
13
description="Programmatically open an editor, capture the result.",
- #long_description='',
14
+ long_description=long_description,
15
classifiers=[
- 'Development Status :: 4 - Beta',
16
+ 'Development Status :: 5 - Production/Stable',
17
'Intended Audience :: Developers',
18
'License :: OSI Approved :: Apache Software License',
19
'Operating System :: OS Independent',
0 commit comments