forked from candu/xhpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.14 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
import os.path
from distutils.core import setup
# The standard distutils bytecode generation step spits out stacktraces on
# trying to parse xhpy/pylib/core.py and xhpy/pylib/html.py as Python, so
# we disable it here.
import sys
sys.dont_write_bytecode = True
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name = 'xhpy',
packages = [
'xhpy',
'xhpy.pylib'
],
version = '0.83',
author = 'Evan Stratford',
author_email = '[email protected]',
license = 'Apache',
description = 'XHP for Python',
url = 'http://github.com/candu/xhpy',
keywords = ['xhp', 'html', 'xml'],
classifiers = [
'Programming Language :: Python',
# TODO: test for Python 3 compatibility
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup'
],
long_description = open(os.path.join(ROOT, 'README.rst')).read(),
)