-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 794 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 794 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
#! /usr/bin/env python
from setuptools import setup
setup(
name='markdown-rdfa',
version='0.1',
author='James McCusker',
author_email='mccusj@cs.rpi.edu',
description='Python-Markdown extension to add support for semantic data (RDFa).',
url='https://github.com/tetherless-world/markdown-rdfa',
py_modules=['mdx_rdfa'],
install_requires=['Markdown>=2.0',],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License ',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)