mirror of
https://github.com/kennethreitz-archive/parse.git
synced 2026-06-05 15:30:18 +00:00
23b89610f7
implement closer to the format() spec
32 lines
929 B
Python
32 lines
929 B
Python
#! /usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
from parse import __version__, __doc__
|
|
|
|
with open('README.rst', 'w') as f:
|
|
f.write(__doc__)
|
|
|
|
# perform the setup action
|
|
setup(
|
|
name = "parse",
|
|
version = __version__,
|
|
description = "parse() is the opposite of format()",
|
|
long_description = __doc__.decode('utf8'),
|
|
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',
|
|
'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
|