File: setup.py

package info (click to toggle)
python-multipledispatch 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 256 kB
  • sloc: python: 1,100; makefile: 143
file content (19 lines) | stat: -rwxr-xr-x 622 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python

from os.path import exists
from setuptools import setup
import multipledispatch

setup(name='multipledispatch',
      version=multipledispatch.__version__,
      description='Multiple dispatch',
      url='http://github.com/mrocklin/multipledispatch/',
      author='Matthew Rocklin',
      author_email='mrocklin@gmail.com',
      install_requires=['six'],
      license='BSD',
      keywords='dispatch',
      packages=['multipledispatch', 'multipledispatch.tests'],
      long_description=(open('README.rst').read() if exists('README.rst')
                        else ''),
      zip_safe=False)