-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
44 lines (41 loc) · 1.37 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pasteboard"
version = "0.4.0"
description = "Pasteboard - Python interface for reading from NSPasteboard (macOS clipboard)"
authors = [
{name = "Toby Fleming", email = "[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: MacOS X :: Cocoa",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Objective C",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Desktop Environment",
"Topic :: Software Development :: Libraries",
]
keywords = ["macOS", "clipboard", "pasteboard"]
requires-python = ">= 3.8"
[project.optional-dependencies]
dev = [
"pytest==7.4.4",
"hypothesis==6.93.0",
"black==23.12.1",
"mypy==1.8.0",
"pre-commit==3.5.0",
]
[tool.setuptools_scm]