-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
41 lines (37 loc) · 1.17 KB
/
setup.cfg
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
41
[metadata]
name = hashsum
version = attr: hashsum.__version__
description = Python drop-in replacement for md5sum and co.
long_description = file: README.rst, NEWS.rst
long_description_content_type = text/x-rst
keywords = checksum, hash
license = BSD 3-Clause License
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: End Users/Desktop
Topic :: Utilities
License :: OSI Approved :: BSD License
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 :: PyPy
Operating System :: OS Independent
url = https://github.com/avalentino/hashsum
download_url = https://pypi.python.org/pypi/hashsum
author = Antonio Valentino
author_email = antonio.valentino@tiscli.it
platforms = any
license_files = LICENSE.txt
[options]
py_modules = hashsum
python_requires = >=3.6
zip_safe = True
[options.entry_points]
console_scripts =
hashsum = hashsum:main
[options.extras_require]
cli = aurgcomplete
[tool:pytest]
addopts = -p no:warnings -p no:logging