send2trash/setup.py

42 lines
1.5 KiB
Python
Raw Normal View History

from setuptools import setup
2010-04-06 01:58:56 -05:00
2010-07-07 04:59:11 -05:00
CLASSIFIERS = [
2020-06-18 21:49:42 -05:00
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2020-12-01 01:36:59 -06:00
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
2020-06-18 21:49:42 -05:00
"Topic :: Desktop Environment :: File Managers",
2010-07-07 04:59:11 -05:00
]
with open("README.rst", "rt") as f1, open("CHANGES.rst", "rt") as f2:
LONG_DESCRIPTION = f1.read() + "\n\n" + f2.read()
2010-10-18 05:13:37 -05:00
2010-04-06 01:58:56 -05:00
setup(
2020-06-18 21:49:42 -05:00
name="Send2Trash",
version="1.6.0b1",
author="Andrew Senetar",
author_email="arsenetar@voltaicideas.net",
packages=["send2trash"],
2010-04-06 01:58:56 -05:00
scripts=[],
2020-06-18 21:49:42 -05:00
test_suite="tests",
url="https://github.com/arsenetar/send2trash",
license="BSD License",
description="Send file to trash natively under Mac OS X, Windows and Linux.",
2010-10-18 05:13:37 -05:00
long_description=LONG_DESCRIPTION,
2010-07-07 04:59:11 -05:00
classifiers=CLASSIFIERS,
2020-06-18 21:49:42 -05:00
extras_require={"win32": ["pywin32"]},
project_urls={"Bug Reports": "https://github.com/arsenetar/send2trash/issues"},
entry_points={"console_scripts": ["send2trash=send2trash.__main__:main"]},
2017-07-31 13:19:58 -05:00
)