Skip to content

Commit

Permalink
Migrate Python package metadata to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmo00 committed Jan 29, 2024
1 parent a3bba69 commit 03a8856
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 35 deletions.
38 changes: 34 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
[project]
name = "alxcheck"
version = "0.1.2"
authors = [{ name="Emmanuel Nwafor", email="nwaforemmanuel005@gmail.com"}]
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",
Expand All @@ -9,7 +43,3 @@ build-backend = "setuptools.build_meta"
line-length = 88 # Adjust to your preferred line length
target-version = ['py37'] # Specify your target Python version
exclude = 'venv/'

[project.urls]
"Homepage" = "https://github.com/Emmo00/alxcheck.git"
"Bug Tracker" = "https://github.com/Emmo00/alxcheck/issues"
31 changes: 0 additions & 31 deletions setup.cfg

This file was deleted.

0 comments on commit 03a8856

Please sign in to comment.