gitfiler/setup.py

32 lines
1.2 KiB
Python
Raw Normal View History

2021-08-11 18:44:49 +02:00
from setuptools import find_packages, setup
source_url = "https://github.com/samedamci/gitfiler"
setup(
name="gitfiler",
2021-08-23 11:58:13 +02:00
version="0.1.1",
2021-08-11 18:44:49 +02:00
description="Simple tool to download single file from GitHub or GitLab.",
author="samedamci",
author_email="samedamci@disroot.org",
url=source_url,
2021-08-23 11:58:13 +02:00
project_urls={"Source": source_url, "Tracker": f"{source_url}/issues"},
2021-08-11 18:44:49 +02:00
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
],
keywords="github gitlab downloader",
2021-08-23 11:58:13 +02:00
python_requires=">=3.6,<4.0",
2021-08-11 18:44:49 +02:00
packages=find_packages(include=["gitfiler"]),
2021-08-23 11:58:13 +02:00
)