2013-10-05 23:12:31 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='snappass',
|
2023-12-02 02:11:30 +01:00
|
|
|
version='1.6.1',
|
2013-10-05 23:12:31 +02:00
|
|
|
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/',
|
2017-05-16 19:33:23 +02:00
|
|
|
install_requires=['Flask', 'redis', 'cryptography'],
|
2013-10-05 23:12:31 +02:00
|
|
|
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,
|
2023-12-02 02:04:38 +01:00
|
|
|
python_requires='>=3.8, <4',
|
2013-10-05 23:12:31 +02:00
|
|
|
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 :: 3',
|
2019-11-25 17:58:29 +01:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2022-05-17 19:25:03 +02:00
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
2013-10-05 23:12:31 +02:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
],
|
2016-07-16 15:49:30 +02:00
|
|
|
zip_safe=False,
|
2013-10-05 23:12:31 +02:00
|
|
|
)
|