boltons/setup.py

41 lines
1.1 KiB
Python
Raw Normal View History

2013-03-01 07:47:23 +00:00
"""
Functionality that should be in the standard library. Like
builtins. But Boltons.
Otherwise known as "everyone's util.py," but cleaned up and
tested.
2015-02-23 23:18:58 +00:00
:copyright: (c) 2015 by Mahmoud Hashemi
2013-03-01 07:47:23 +00:00
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup
__author__ = 'Mahmoud Hashemi'
2015-04-11 09:27:10 +00:00
__version__ = '0.6.3dev'
2013-03-01 07:47:23 +00:00
__contact__ = 'mahmoudrhashemi@gmail.com'
__url__ = 'https://github.com/mahmoud/boltons'
__license__ = 'BSD'
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',
'Programming Language :: Python :: 3.4', ]
2013-03-01 07:47:23 +00:00
)