30 lines
1 KiB
Python
30 lines
1 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(name='uotp',
|
|
version='0.1',
|
|
description='ungleich One Time Password Service',
|
|
url='https://code.ungleich.ch/ungleich-public/uotp',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
'Programming Language :: Python :: 3'
|
|
],
|
|
author='ungleich',
|
|
author_email='technik@ungleich.ch',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'flask',
|
|
'flask-restful',
|
|
'etcd3_wrapper @ https://code.ungleich.ch/ungleich-public/etcd3_wrapper/repository/master/archive.tar.gz#egg=etcd3_wrapper',
|
|
'python-decouple',
|
|
'requests',
|
|
'pyotp',
|
|
'click'
|
|
],
|
|
scripts=['bin/uotp'],
|
|
zip_safe=False)
|