-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1.02 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "uncrustify-objc"
version = "1.6"
authors = [
{name = "Will Han", email = "xingheng.hax@qq.com"},
]
description = "Use uncrustify to format the objective-c files under the specified project path"
readme = "README.txt"
license = {text = "MIT"}
keywords = ["uncrustify", "objective-c", "objc", "code", "beauty", "format"]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Objective C",
"Programming Language :: Unix Shell",
"Topic :: Software Development :: Version Control",
"Topic :: System :: Shells",
"Topic :: Terminals",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"click",
"pathspec",
]
[project.urls]
"Homepage" = "https://github.com/python-cli/uncrustify-objc"
[project.scripts]
uncrustify-objc = "uncrustify_objc:cli"