Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BSD_LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2024, StartOS, Inc
Copyright (c) 2026, StartOS, Inc
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ To the extent possible, if any provision of this Public License is deemed unenfo
No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.

Copyright 2024-2025 StartOS Inc.
Copyright 2024-2026 StartOS Inc.

Code committed prior to October 26th, 2024 remains the copyright of Jason Nichols, the previous maintainer of the repository under the BSD 2-Clause License (see BSD_LICENSE)

Expand Down
24 changes: 14 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ requires = [
"setuptools",
"setuptools_scm[toml]>=6.0",
"build",
"hatch-requirements-txt"
]
build-backend = "hatchling.build"

Expand All @@ -17,7 +16,7 @@ description = "Calculate code metrics in various languages"
readme = "README.md"
license = "CC-BY-NC-4.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand All @@ -32,13 +31,21 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
]
dynamic = ["dependencies", "version"]
dependencies = [
"chardet>=5.2.0",
"httpx[http2]~=0.28.1",
"pygments>=2.19.2",
"pygments-tsx>=1.0.3",
"pygount>=3.1.1",
"cachehash>=1.1.3",
]
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"black>=24.1.1",
"pytest",
"pytest-cov"
"black>=26.1.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0"
]

[project.scripts]
Expand All @@ -52,7 +59,7 @@ modernmetric-test = "test.test_self_scan:main"

[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311']
target-version = ['py311', 'py312', 'py313']
include = '\.pyi?$'
exclude = '''
(
Expand All @@ -71,6 +78,3 @@ include = ["modernmetric*", "test*"]

[tool.hatch.version]
path = "VERSION.py"

[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
6 changes: 0 additions & 6 deletions requirements.txt

This file was deleted.

Loading