Update setup.py

This commit is contained in:
samedamci 2021-08-23 11:58:13 +02:00
parent 3267e6a245
commit 07d4431eb8
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894

View File

@ -4,15 +4,12 @@ source_url = "https://github.com/samedamci/gitfiler"
setup(
name="gitfiler",
version="0.1",
version="0.1.1",
description="Simple tool to download single file from GitHub or GitLab.",
author="samedamci",
author_email="samedamci@disroot.org",
url=source_url,
project_urls={
"Source": source_url,
"Tracker": f"{source_url}/issues",
},
project_urls={"Source": source_url, "Tracker": f"{source_url}/issues"},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
@ -29,6 +26,6 @@ setup(
"Typing :: Typed",
],
keywords="github gitlab downloader",
python_requires=">=3.6",
python_requires=">=3.6,<4.0",
packages=find_packages(include=["gitfiler"]),
)