-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.2 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
[project]
name = "alxcheck"
version = "0.1.3"
authors = [{ name="Emmanuel Nwafor", email="[email protected]"}]
description = "ALX text suite. Shell Utility that checks files for ALX's Project Requirements. Including: General, C, JavaScript and Python projects"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["alx", "alx test", "test", "checks", "test suite", "green squares"]
requires-python = ">=3.7"
dependencies = [
"pycodestyle",
"colorama",
]
[project.license]
text = "MIT"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
"Homepage" = "https://github.com/Emmo00/alxcheck.git"
"Bug Tracker" = "https://github.com/Emmo00/alxcheck/issues"
[project.scripts]
alxcheck = "alxcheck.main:main"
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88 # Adjust to your preferred line length
target-version = ['py37'] # Specify your target Python version
exclude = 'venv/'