-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
175 lines (164 loc) · 3.96 KB
/
pyproject.toml
File metadata and controls
175 lines (164 loc) · 3.96 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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
[build-system]
requires = ["setuptools", "burger"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "makeprojects"
authors = [
{ name = "Rebecca Ann Heineman" },
{ email = "becky@burgerbecky.com" },
]
description = "IDE project generator for Visual Studio, XCode, etc..."
license = "MIT"
license-files = ["LICENSE.txt"]
dependencies = [
"setuptools>=44.0.0",
"enum34>=1.0.0",
"burger>=1.5.0",
"ide_gen>=0.1.1",
"argparse>=1.0",
"glob2>=0.6",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"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",
"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 :: 3.13",
]
requires-python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
readme = "README.rst"
keywords = [
"burger",
"perforce",
"burgerlib",
"development",
"makeprojects",
"xcode",
"visual studio",
"visualstudio",
"codeblocks",
"watcom",
"ps3",
"ps4",
"ps5",
"xboxone",
"xbox360",
"vita",
"mac",
"macosx",
"ios",
"android",
"stadia",
"nintendo",
"switch"
]
[project.scripts]
makeprojects = "makeprojects.__main__:main"
buildme = "makeprojects.buildme:main"
cleanme = "makeprojects.cleanme:main"
rebuildme = "makeprojects.rebuildme:main"
[tool.setuptools]
platforms = ["Any"]
[tool.setuptools.dynamic]
version = { attr = "makeprojects.__version__" }
[project.urls]
Homepage = "https://github.com/burgerbecky/makeprojects"
Documentation = "http://makeprojects.readthedocs.io"
Source = "https://github.com/burgerbecky/makeprojects"
[tool.setuptools.packages.find]
include = ["makeprojects"]
exclude = ["unittests"]
namespaces = false
[tool.tox]
requires = ["tox>=4.23.0"]
toxworkdir = "{toxinidir}/temp/tox"
envlist = [
"py27",
"py34",
"py35",
"py36",
"py37",
"py38",
"py39",
"py310",
"py311",
"py312",
"py313",
"pypy",
"pypy3",
]
skipsdist = true
skip_missing_interpreters = true
[tool.tox.env_run_base]
description = "Run test under {base_python}"
commands = [["pytest"]]
allowlist_externals = ["pytest"]
setenv = {"PYTHONPATH" = "{toxinidir}"}
changedir = "{toxinidir}/unittests"
deps = ["pytest", "burger", "enum34"]
# Settings for Autopep8
# Visual Studio Code needs --global-config ${workspaceFolder}/pyproject.toml
# in user settings
[tool.autopep8]
max-line-length = 80
ignore = ["W191", "E266", "E101", "E111"]
verbose = 1
aggressive = 1
indent-size = 4
# Requires flake8-pyproject installed
[tool.flake8]
max-line-length = 80
extend-ignore = [
# W191 using tabs
"W191",
# E266 Too many leading #'s
"E266",
# E128 under indented line continuation
"E128",
# E502 Redunant backslash between brackets
"E502",
# N802 Function name should be lowercase
"N802",
# F401 Imported but unused
"F401",
# F402 Import not at top of file
"F402",
"E402",
# F405 May be undefined or star imported
"F405",
# F403 * used but unable to detect imported names
"F403",
]
exclude = [
".tox",
".git",
"__pycache__",
"docs/conf.py",
"build",
"dist",
"temp",
"*.pyc",
"*.egg-info",
".cache",
".eggs",
]
# Parameters for Pytest
[tool.pytest.ini_options]
cache_dir = "temp/.pytest_cache"