-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (51 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[metadata]
name = renuniq
summary = Renames files, giving them each unique names
version = 1
description =
Renames files (such as images) in bulk while ensuring they each have a
unique names, based either on the original name or by including an
increasing numeric value.
long_description_file =
README.md
author = Dan Fandrich
author_email = [email protected]
home_page = https://github.com/dfandrich/renuniq
license = GPLv2+
license_files = COPYING
classifiers =
Programming Language :: Python
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
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
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Users
Intended Audience :: End Users/Desktop
Natural Language :: English
Topic :: Utilities
Typing :: Typed
[options.package_data]
. =
renuniq.1
[options]
packages =
.
py_modules =
renuniq
pandoc_files =
renuniq.1.md
test_suite = renuniq_test
setup_requires =
flake8
[options.entry_points]
console_scripts =
renuniq = renuniq:main
[flake8]
max-line-length = 100