Skip to content

Commit

Permalink
Add info for PyPI (#2)
Browse files Browse the repository at this point in the history
Also increment version to 0.2.1 to push the update to PyPI.
  • Loading branch information
kit1980 authored Nov 28, 2023
1 parent 4e4c598 commit f4709ba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
[project]
name = "TorchFix"
description = "TorchFix - a linter for PyTorch-using code with autofix support"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dynamic = ["version"]
dependencies = ["flake8>=3.8.2", "PyYAML", "libcst>=1.1.0,<1.2.0"]

[project.urls]
Repository = "https://github.com/pytorch-labs/torchfix"
"Bug Tracker" = "https://github.com/pytorch-labs/torchfix/issues"

[project.scripts]
torchfix = "torchfix.__main__:main"

Expand Down
2 changes: 1 addition & 1 deletion torchfix/torchfix.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
)
from .visitors.security import TorchUnsafeLoadVisitor

__version__ = "0.2.0"
__version__ = "0.2.1"

DEPRECATED_CONFIG_PATH = Path(__file__).absolute().parent / "deprecated_symbols.yaml"

Expand Down

0 comments on commit f4709ba

Please sign in to comment.