-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
29 lines (28 loc) · 901 Bytes
/
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
"""Setup."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# with the help from http://peterdowns.com/posts/first-time-with-pypi.html
# http://www.scotttorborg.com/python-packaging/minimal.html
setup(
name='BetterErrorMessages',
packages=['didyoumean'],
version='0.4',
description=('Logic to have suggestions in case of errors '
'(NameError, AttributeError, ImportError, TypeError, etc).'),
author='Sylvain Desodt',
author_email='[email protected]',
url='https://github.com/SylvainDe/DidYouMean-Python',
download_url='https://github.com/SylvainDe/DidYouMean-Python/tarball/0.1',
keywords=[
'didyoumean',
'exception',
'error',
'suggestion',
'excepthook',
'decorator',
'contextmanager',
'typo'],
classifiers=[],
)