This repository has been archived by the owner on Mar 9, 2024. It is now read-only.
forked from pyatom/pyatom
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
63 lines (59 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "atomacos"
author = "Davee Nguyen"
author-email = "[email protected]"
home-page = "https://github.com/daveenguyen/atomacos"
requires = [
"pyobjc-core>=3.0.4",
"pyobjc-framework-Cocoa>=3.0.4",
"pyobjc-framework-Quartz>=3.0.4",
"pyobjc-framework-ApplicationServices>=3.0.4",
"pyobjc-framework-CoreText>=3.0.4",
"pygetwindow<0.0.5",
"pyscreeze<0.1.20",
"pyautogui<0.9.42",
"future",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: MacOS X :: Cocoa",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Objective C",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: User Interfaces",
]
description-file="README.md"
[tool.flit.metadata.requires-extra]
dev = [
"black",
"pre-commit",
"tox",
]
test = [
"pytest",
"pytest-cov",
]
doc = ["sphinx", "m2r2"]
[tool.isort]
multi_line_output=3
include_trailing_comma=true
force_grid_wrap=0
use_parentheses=true
line_length=88