1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python/blessings/setup.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,42 @@ 1.4 +import sys 1.5 + 1.6 +from setuptools import setup, find_packages 1.7 + 1.8 + 1.9 +extra_setup = {} 1.10 +if sys.version_info >= (3,): 1.11 + extra_setup['use_2to3'] = True 1.12 + 1.13 +setup( 1.14 + name='blessings', 1.15 + version='1.3', 1.16 + description='A thin, practical wrapper around terminal formatting, positioning, and more', 1.17 + long_description=open('README.rst').read(), 1.18 + author='Erik Rose', 1.19 + author_email='erikrose@grinchcentral.com', 1.20 + license='MIT', 1.21 + packages=find_packages(exclude=['ez_setup']), 1.22 + tests_require=['Nose'], 1.23 + url='https://github.com/erikrose/blessings', 1.24 + include_package_data=True, 1.25 + classifiers=[ 1.26 + 'Intended Audience :: Developers', 1.27 + 'Natural Language :: English', 1.28 + 'Development Status :: 5 - Production/Stable', 1.29 + 'Environment :: Console', 1.30 + 'Environment :: Console :: Curses', 1.31 + 'License :: OSI Approved :: MIT License', 1.32 + 'Operating System :: POSIX', 1.33 + 'Programming Language :: Python :: 2', 1.34 + 'Programming Language :: Python :: 2.5', 1.35 + 'Programming Language :: Python :: 2.6', 1.36 + 'Programming Language :: Python :: 2.7', 1.37 + 'Programming Language :: Python :: 3', 1.38 + 'Programming Language :: Python :: 3.2', 1.39 + 'Topic :: Software Development :: Libraries', 1.40 + 'Topic :: Software Development :: User Interfaces', 1.41 + 'Topic :: Terminals' 1.42 + ], 1.43 + keywords=['terminal', 'tty', 'curses', 'ncurses', 'formatting', 'style', 'color', 'console'], 1.44 + **extra_setup 1.45 +)