File: setup.py

package info (click to toggle)
commonmark-bkrs 0.5.4%2Bds-7.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,264 kB
  • sloc: python: 3,667; makefile: 29; sh: 8
file content (31 lines) | stat: -rwxr-xr-x 1,290 bytes parent folder | download | duplicates (7)
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
# CommonMark.py - setup.py
from distutils.core import setup

setup(
	name = "CommonMark_bkrs",
	packages = ["CommonMark_bkrs"],
	package_dir = {"CommonMark_bkrs": "CommonMark"},
	scripts=["bin/cmark.py", "CommonMark/test/test-CommonMark.py"],
	version = "0.5.4",
	license = "BSD License",
	description = "Python parser for the CommonMark Markdown spec",
	author = "Bibek Kafle <bkafle662@gmail.com>, Roland Shoemaker <rolandshoemaker@gmail.com>",
	author_email = "rolandshoemaker@gmail.com",
	url = "https://github.com/rolandshoemaker/CommonMark-py",
	download_url = "https://github.com/rolandshoemaker/CommonMark-py/tarball/v0.5.4",
	keywords = ["markup", "markdown", "commonmark"],
	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"])