1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup
setup(
name="aioshutil",
author="Kumar Aditya",
author_email="kumaraditya@python.org",
url="https://github.com/kumaraditya303/aioshutil",
description="Asynchronous shutil module.",
keywords=["asyncio", "io", "shutil"],
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
use_scm_version=True,
packages=["aioshutil"],
license="BSD License",
include_package_data=True,
zip_safe=False,
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
],
setup_requires=["setuptools_scm"],
install_requires=["typing-extensions;python_version<'3.10'"],
)
|