forked from mahmoud/boltons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (35 loc) · 1.15 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
"""
Functionality that should be in the standard library. Like
builtins. But Boltons.
Otherwise known as "everyone's util.py," but cleaned up and
tested.
:copyright: (c) 2015 by Mahmoud Hashemi
:license: BSD, see LICENSE for more details.
"""
import sys
from setuptools import setup
__author__ = 'Mahmoud Hashemi'
__version__ = '0.5.2dev'
__contact__ = '[email protected]'
__url__ = 'https://github.com/mahmoud/boltons'
__license__ = 'BSD'
if sys.version_info >= (3,):
raise NotImplementedError("boltons Python 3 support en route to your location")
setup(name='boltons',
version=__version__,
description="When they're not builtins, they're boltons.",
long_description=__doc__,
author=__author__,
author_email=__contact__,
url=__url__,
packages=['boltons'],
include_package_data=True,
zip_safe=False,
license=__license__,
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', ]
)