two_factor_kumisms/setup.py
2020-06-10 11:07:59 +02:00

33 lines
1.1 KiB
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="two-factor-kumisms",
version="0.9",
author="Kumi Systems e.U.",
author_email="support@kumi.systems",
description="Provides Kumi SMS support for django-two-factor-auth",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://kumig.it/kumisystems/",
packages=setuptools.find_packages(),
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
python_requires='>=3.6',
)