Uh oh!
There was an error while loading. Please reload this page.
forked from r1chardj0n3s/parse
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·36 lines (30 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·36 lines (30 loc) · 1.07 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
#! /usr/bin/env python
from __future__ importwith_statement
fromdistutils.coreimportsetup
fromparseimport__version__, __doc__
withopen('README.rst', 'w') asf:
f.write(__doc__)
# perform the setup action
setup(
name="parse",
version=__version__,
description="parse() is the opposite of format()",
long_description=__doc__,
author="Richard Jones",
author_email="rjones@ekit-inc.com",
py_modules= ['parse'],
url='https://github.com/r1chardj0n3s/parse',
classifiers= [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
],
)
# vim: set filetype=python ts=4 sw=4 et si