File: setup.py

package info (click to toggle)
python-multipledispatch 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 272 kB
  • sloc: python: 1,116; makefile: 141
file content (19 lines) | stat: -rwxr-xr-x 509 bytes parent folder | download
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

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