-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·28 lines (25 loc) · 1 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
#!/usr/bin/env python
""" setup.py for multimethodic
"""
from distutils.core import setup
setup(
name = 'multimethodic',
version = '1.0',
description = 'Clojure-style multimethods for Python',
author = 'Daniel Werner',
author_email = 'daniel.d.werner@googlemail.com',
license = 'BSD 2-clause',
keywords = 'multimethods dispatch',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
url = 'http://github.com/danwerner/multimethodic',
py_modules = ['multimethodic'],
long_description = "This module adds multimethod support to the Python programming language. In \
contrast to other multiple dispatch implementations, this one doesn't strictly \
dispatch on argument types, but on a user-provided dispatch function that can \
differ for each multimethod. This design is inspired the Clojure programming \
language's multimethods.",
)