-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 835 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (23 loc) · 835 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='wirecloud-markdown-github',
version='1.2',
author='CoNWeT Lab',
author_email='wirecloud@conwet.com',
description='Set of markdown extensions for getting similar behaviour to GFM.',
url='https://github.com/conwetlab/markdown_github',
packages=['markdown_github'],
install_requires=['markdown>=3.0', 'pymdown-extensions'],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)