File: setup.py

package info (click to toggle)
python-pipeline 0.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 128 kB
  • ctags: 123
  • sloc: python: 426; makefile: 20
file content (29 lines) | stat: -rw-r--r-- 750 bytes parent folder | download
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
'''
python-pipeline lets you create pipelines of iterators.
'''

classifiers = '''\
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules'''.split('\n')

from distutils.core import setup

setup(
	name = 'python-pipeline',
	version = '0.1.1',
	license = 'GNU GPL 2',
	platforms = ['any'],
	description = 'Iterator pipelines',
	long_description = __doc__.strip(),
	classifiers = classifiers,
	url = 'http://python-pipeline.googlecode.com/',
	author = 'Jakub Wilk',
	author_email = 'ubanus@users.sf.net',
	py_modules = ['pipeline']
)

# vim:ts=4 sw=4 noet