00f6964a90
- "{}".format('foo') does not work on python2.6, as the index needs to be explicitly specified. - assertIn(x, y) was only introduced in 2.7, reverting to assertTrue(x in y) Updated test environments definitions and docs accordingly.
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='snappass',
|
|
version='0.1.0',
|
|
description="It's like SnapChat... for Passwords.",
|
|
long_description=(open('README.rst').read() + '\n\n' +
|
|
open('AUTHORS.rst').read()),
|
|
url='http://github.com/Pinterest/snappass/',
|
|
install_requires=['Flask', 'redis'],
|
|
license='MIT',
|
|
author='Dave Dash',
|
|
author_email='dd+github@davedash.com',
|
|
packages=['snappass'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'snappass = snappass.main:main',
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'Natural Language :: English',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
zip_safe=False,
|
|
)
|
|
|