-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (24 loc) · 839 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os
from setuptools import setup
version = '0.4.1'
long_description_filename = os.path.join(
os.path.dirname(__file__), 'README.rst')
long_description = open(long_description_filename).read()
setup(
name="setuptools-markdown",
version=version,
author="Marc Abramowitz",
author_email="[email protected]",
url="https://github.com/msabramo/setuptools-markdown",
keywords='distutils setuptools markdown',
description="[Deprecated] Use Markdown for your project description",
long_description=long_description,
license='MIT',
install_requires=['pypandoc'],
py_modules=['setuptools_markdown'],
zip_safe=False,
entry_points="""
[distutils.setup_keywords]
long_description_markdown_filename=setuptools_markdown:long_description_markdown_filename
"""
)