|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=42", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
1 | 5 | [tool.poetry] |
2 | 6 | name = "pick" |
3 | 7 | version = "2.5.0" |
4 | 8 | description = "Pick an option in the terminal with a simple GUI" |
5 | | -authors = ["wong2 <wonderfuly@gmail.com>", "AN Long <aisk1988@gmail.com>"] |
| 9 | +authors = ["wong2 <wonderfuly@gmail.com>"] |
6 | 10 | license = "MIT" |
7 | 11 | readme = "README.md" |
8 | | -repository = "https://github.com/aisk/pick" |
9 | 12 | homepage = "https://github.com/aisk/pick" |
10 | 13 | keywords = ["terminal", "gui"] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 5 - Production/Stable", |
| 16 | + "Environment :: Console", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 28 | + "Topic :: Terminals" |
| 29 | +] |
| 30 | +packages = [{include = "pick", from = "src"}] |
11 | 31 |
|
12 | 32 | [tool.poetry.dependencies] |
13 | | -python = ">=3.8" |
14 | | -windows-curses = {version = "^2.2.0", platform = "win32"} |
| 33 | +python = "^3.8" |
| 34 | +windows-curses = {version = "^2.2.0", markers = "platform_system == 'Windows'"} |
15 | 35 |
|
16 | | -[tool.poetry.dev-dependencies] |
| 36 | +[tool.poetry.group.dev.dependencies] |
| 37 | +mypy = "^1.14.1" |
17 | 38 | pytest = "^8.3.5" |
18 | | -mypy = "^1.4" |
19 | 39 | pre-commit = "^3.5.0" |
20 | | - |
21 | | -[build-system] |
22 | | -requires = ["poetry-core>=1.0.0"] |
23 | | -build-backend = "poetry.core.masonry.api" |
| 40 | +setuptools = "^73.0.0" |
| 41 | +types-setuptools = "^73.0.0" |
0 commit comments