-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (39 loc) · 1.33 KB
/
setup.py
File metadata and controls
executable file
·42 lines (39 loc) · 1.33 KB
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
#!/usr/bin/env python
from distutils.core import setup
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 2.6",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Filters",
"Topic :: Software Development :: Documentation",
"Environment :: Console",
]
setup(
name = 'zerodoc',
version = '0.2.3',
description = "minimalistic {asciidoc/pod/phpdoc}-alike " +
"plaintext to html/markdown/whatever' format" +
"with a very simple interpreter and a very" +
"simple syntax",
author = "Pablo Martin",
author_email = "pablo@odkq.com",
packages = ['zerodoc'],
scripts = [
'scripts/zerodoc'
],
url = "https://github.com/odkq/zerodoc",
license = "GPL v3",
# README.0 is written in zerodoc itself
long_description = open('README.rst').read(),
data_files = [
("/usr/share/doc/zerodoc",
[ "README.rst"]),
("/usr/share/doc/zerodoc",
[ "README.zd"]),
("/usr/share/zerodoc/stylesheets",
[ "stylesheets/default.css"]),
],
install_requires = ['ply', 'pygments'],
classifiers = classifiers
)