-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (36 loc) · 1.35 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
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import doctest
from pathlib import Path
from setuptools import setup
MODULE = 'mdx_unimoji'
def tests():
doctest.DocTestSuite(MODULE)
with open(Path(__file__).parent / 'README.md') as readme_file:
readme = '\n' + readme_file.read()
setup(
name=MODULE,
version='1.1',
author='Jack Nicholson',
author_email='[email protected]',
description='Python-Markdown extension that replaces common smileys with their Unicode emoji emoticons. ;)',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/kernc/' + MODULE,
py_modules=[MODULE],
test_suite='setup.tests',
install_requires=['Markdown'],
license='GPLv3+',
keywords='markdown unicode emoji emoticon',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)