-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
41 lines (36 loc) · 970 Bytes
/
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 = picaf
version = 0.9.0
description = Show the window that allows you to click filenames, which are picked up by scanning input text file.
long_description = file: README-pypi.md
long_description_content_type = text/markdown
url = https://github.com/tos-kamiya/picaf
author = Toshihiro Kamiya
author_email = [email protected]
license = BSD 2-Clause License
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: BSD License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
[options]
packages = find:
install_requires =
pyautogui
PySimpleGUI
python_requires = >= 3.8
[options.entry_points]
console_scripts =
picaf = picaf.main:main
[tox:tox]
envlist = py38, py39, py310
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
[testenv]
commands =
python -m unittest discover