-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
97 lines (89 loc) · 3.06 KB
/
setup.py
File metadata and controls
97 lines (89 loc) · 3.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# This file is subject to the terms and conditions defined in
# file 'LICENSE', which is part of this source code package.
# Copyright (c) 2010 SKR Farms (P) LTD.
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
import os
import re
here = abspath(dirname(__file__))
README = open(join(here, 'README.rst')).read()
v = open(join(dirname(__file__), 'eazytext', '__init__.py'))
version = re.compile(r".*__version__[ ]*=[ ]*'(.*?)'", re.S).match(v.read()).group(1)
v.close()
description='An extensible wiki processor, using parser grammer'
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Pylons',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows CE',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Documentation',
'Topic :: Internet',
'Topic :: Utilities',
]
setup(
name='eazytext',
version=version,
py_modules=[],
package_dir={},
packages=find_packages(),
ext_modules=[],
scripts=[],
data_files=[],
package_data={}, # setuptools / distutils
include_package_data=True, # setuptools
exclude_package_data={}, # setuptools
zip_safe=True, # setuptools
entry_points={ # setuptools
'console_scripts' : [
'eztext = eazytext.eztext:main'
],
'pygments.lexers' : [
'ttl = eazytext.extension.ttlpygment:TemplateLexer',
],
},
install_requires=[ # setuptools
'ply',
'pygments',
'paste',
'zope.interface',
'zope.component',
],
extras_require={}, # setuptools
setup_requires={}, # setuptools
dependency_links=[], # setuptools
namespace_packages=[], # setuptools
test_suite='eazytext.test', # setuptools
provides=[ 'eazytext', ],
requires='',
obsoletes='',
author='Pratap R Chakravarthy',
author_email='prataprc@pluggdapps.com',
maintainer='Pratap R Chakravarthy',
maintainer_email='prataprc@pluggdapps.com',
url='http://eazytext.pluggdapps.com',
download_url='',
license='Simplified BSD license',
description=description,
long_description=README,
platforms='',
classifiers=classifiers,
keywords=[ 'wiki documentation parser ply' ],
)