21 lines
634 B
Python
21 lines
634 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="share-via-http",
|
|
version="1.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"qrcode[pil]",
|
|
],
|
|
scripts=["share-via-http.py"],
|
|
python_requires=">=3.6",
|
|
author="Your Name",
|
|
author_email="contact@ingolf-wagner.d",
|
|
description="Starte a simple HTTP server to share files with basic_auth, generate a QR Code for quick url sharing",
|
|
url="http://example.org/",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
)
|