ty 0.0.0a7__py3-none-macosx_10_12_x86_64.whl → 0.0.1a1__py3-none-macosx_10_12_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ty might be problematic. Click here for more details.

ty/py.typed ADDED
@@ -0,0 +1 @@
1
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ty
3
- Version: 0.0.0a7
3
+ Version: 0.0.1a1
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  License-File: LICENSE
23
23
  Summary: An extremely fast Python type checker, written in Rust.
24
24
  Keywords: ty,typing,analysis,check
25
- Home-Page: https://docs.astral.sh/ruff
25
+ Home-Page: https://github.com/astral-sh/ty/
26
26
  Author: Charlie Marsh <charlie.r.marsh@gmail.com>
27
27
  Author-email: "Astral Software Inc." <hey@astral.sh>
28
28
  License: MIT
@@ -37,12 +37,51 @@ Project-URL: Discord, https://discord.gg/astral-sh
37
37
 
38
38
  An extremely fast Python type checker and language server, written in Rust.
39
39
 
40
- > [!WARNING]
41
- > ty is pre-release software and not ready for production use. Expect to encounter bugs, missing
42
- > features, and fatal errors.
40
+ > WARNING:
41
+ >
42
+ > ty is in preview and is not ready for production use.
43
+ >
44
+ > We're working hard to make ty stable and feature-complete, but until then, expect to encounter bugs,
45
+ > missing features, and fatal errors.
43
46
 
44
- ty is in active development, and we're working hard to make it stable
45
- and feature-complete.
47
+ ## Getting started
48
+
49
+ Run ty with [uvx](https://docs.astral.sh/uv/guides/tools/#running-tools) to get started quickly:
50
+
51
+ ```shell
52
+ uvx ty
53
+ ```
54
+
55
+ For other ways to install ty, see the [installation](https://github.com/astral-sh/uv/blob/0.0.1-alpha.1/docs/README.md#installation) documentation.
56
+
57
+ If you do not provide a subcommand, ty will list available commands — for detailed information about
58
+ command-line options, see the [CLI reference](https://github.com/astral-sh/uv/blob/0.0.1-alpha.1/docs/reference/cli.md).
59
+
60
+ Use the `check` command to run the type checker:
61
+
62
+ ```shell
63
+ uvx ty check
64
+ ```
65
+
66
+ ty will run on all Python files in the working directory and or subdirectories. If used from a
67
+ project, ty will run on all Python files in the project (starting in the directory with the
68
+ `pyproject.toml`)
69
+
70
+ You can also provide specific paths to check:
71
+
72
+ ```shell
73
+ uvx ty check example.py
74
+ ```
75
+
76
+ When type checking, ty will find installed packages in the active virtual environment (via
77
+ `VIRTUAL_ENV`) or discover a virtual environment named `.venv` in the project root or working
78
+ directory. It will not find packages in non-virtual environments without specifying the target path
79
+ with `--python`. See the [module discovery](https://github.com/astral-sh/uv/blob/0.0.1-alpha.1/docs/README.md#module-discovery) documentation for
80
+ details.
81
+
82
+ ## Learning more
83
+
84
+ To learn more about using ty, see the [documentation](https://github.com/astral-sh/uv/blob/0.0.1-alpha.1/docs/README.md).
46
85
 
47
86
  ## Getting involved
48
87
 
@@ -54,11 +93,11 @@ at this time. Please [open pull requests](https://github.com/astral-sh/ruff/pull
54
93
  to anything in the `ruff` submodule (which includes all of the Rust source code).
55
94
 
56
95
  See the
57
- [contributing guide](https://github.com/astral-sh/ty/blob/main/CONTRIBUTING.md) for more details.
96
+ [contributing guide](https://github.com/astral-sh/uv/blob/0.0.1-alpha.1/CONTRIBUTING.md) for more details.
58
97
 
59
98
  ## License
60
99
 
61
- ty is licensed under the MIT license ([LICENSE](LICENSE) or
100
+ ty is licensed under the MIT license ([LICENSE](https://github.com/astral-sh/uv/blob/0.0.1-alpha.1/LICENSE) or
62
101
  <https://opensource.org/licenses/MIT>).
63
102
 
64
103
  Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in ty
@@ -0,0 +1,8 @@
1
+ ty-0.0.1a1.data/scripts/ty,sha256=PDX59NovKNAvgZYIGXiUDZ_37dUnvtBEOB1X7N7dHTw,14930636
2
+ ty-0.0.1a1.dist-info/METADATA,sha256=21HT2qKwoNHf0MnBw85aH_g7RPe-52AIDz4EpHa8bJI,4487
3
+ ty-0.0.1a1.dist-info/WHEEL,sha256=Z9EvJcq5N96b4rSqg-ys1OmbbWPCugqwpJtF9hM4jHw,103
4
+ ty-0.0.1a1.dist-info/licenses/LICENSE,sha256=hg49eoa4TmpwEsemNfxk30dc68bM403-tzpZguxYF2w,1077
5
+ ty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ ty/__main__.py,sha256=EFz_yrs8nZWhIs1P5u76AQdloJrLT5K3-BwDjBEMi3s,2875
7
+ ty/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
8
+ ty-0.0.1a1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.8.3)
2
+ Generator: maturin (1.8.6)
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-macosx_10_12_x86_64
@@ -1,7 +0,0 @@
1
- ty-0.0.0a7.dist-info/METADATA,sha256=G_FEPtgYDCKExi_nJW0O4CGT5adLRYcY3R4q7-kCkVQ,2980
2
- ty-0.0.0a7.dist-info/WHEEL,sha256=iynIFuruP98iAQ_vbgENee_L7CnfkfNjTMl4i53tE2Q,103
3
- ty-0.0.0a7.dist-info/licenses/LICENSE,sha256=hg49eoa4TmpwEsemNfxk30dc68bM403-tzpZguxYF2w,1077
4
- ty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- ty/__main__.py,sha256=EFz_yrs8nZWhIs1P5u76AQdloJrLT5K3-BwDjBEMi3s,2875
6
- ty-0.0.0a7.data/scripts/ty,sha256=qq8ZSnQdmTBsckF5CsIx7M6l-yKb-KWcHwjNwv9Juus,14769908
7
- ty-0.0.0a7.dist-info/RECORD,,