-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (32 loc) · 1.19 KB
/
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
27
28
29
30
31
32
33
34
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# vi:ts=4 sw=4 sts=4 tw=78 et:
# -----------------------------------------------------------------------------
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='markdown_markup_emoji',
version='0.2.1',
author='Eloise Severin',
author_email='Eloise.severin @ gmail.com',
description='Python markdown extension for markup Emoji',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/EloiseSeverin/markdown_markup_emoji/',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
install_requires=['Markdown>=3.0.0'],
test_suite='tests',
packages=['markdown_markup_emoji'],
keywords=['Markdown', 'extension', 'plugin', 'Emoji'],
entry_points={
'markdown.extensions': [
'markup_emoji = markdown_markup_emoji.markdup_emoji:MarkupEmojiExtension']
},
)