forked from readthedocs/commonmark.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (50 loc) · 1.69 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, Command
class Test(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import subprocess
import sys
errno = subprocess.call([
sys.executable, 'CommonMark/tests/run_spec_tests.py'])
raise SystemExit(errno)
setup(
name="CommonMark",
packages=['CommonMark'],
scripts=['bin/cmark.py'],
version="0.6.2",
license="BSD License",
description="Python parser for the CommonMark Markdown spec",
author="Bibek Kafle <[email protected]>, " +
"Roland Shoemaker <[email protected]>",
author_email="[email protected]",
maintainer="Nik Nyby",
maintainer_email="[email protected]",
url="https://github.com/rtfd/CommonMark-py",
keywords=["markup", "markdown", "commonmark"],
cmdclass={'test': Test},
install_requires=[
'future',
],
setup_requires=[
'flake8',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities"])