-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·53 lines (44 loc) · 1.92 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from distutils.core import setup
setup(
name='pointfree',
version='1.1.1',
description='Pointfree style toolkit for Python',
long_description="""
pointfree is a small module that makes certain functional programming
constructs more convenient to use in Python.
Specifically, it provides:
* A decorator to enable *automatic* partial application of functions and
methods.
* Notations for function composition through operator overloading.
* Helper functions to make composing generators more elegant.
The objective is to support the `pointfree programming style`_ in a
lightweight and easy to use manner -- and in particular, to serve as a nice
syntax for the kind of generator pipelines described in David Beazley's
PyCon 2008 presentation, `"Generator Tricks for Systems Programmers"`_.
.. _`pointfree programming style`: http://www.haskell.org/haskellwiki/Pointfree
.. _`"Generator Tricks for Systems Programmers"`: http://www.dabeaz.com/generators/Generators.pdf
Full documentation is available on the web at:
http://pointfree.readthedocs.org/en/latest/
""",
author='Mark Shroyer',
author_email='code@markshroyer.com',
url='https://github.com/markshroyer/pointfree',
py_modules=['pointfree'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Operating System :: OS Independent',
'Topic :: Software Development',
]
)