ty 0.0.0a5__py3-none-macosx_11_0_arm64.whl → 0.0.0a7__py3-none-macosx_11_0_arm64.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.

@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.4
2
+ Name: ty
3
+ Version: 0.0.0a7
4
+ Classifier: Development Status :: 3 - Alpha
5
+ Classifier: Environment :: Console
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: OS Independent
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Classifier: Programming Language :: Rust
18
+ Classifier: Topic :: Software Development :: Quality Assurance
19
+ Classifier: Topic :: Software Development :: Testing
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ License-File: LICENSE
23
+ Summary: An extremely fast Python type checker, written in Rust.
24
+ Keywords: ty,typing,analysis,check
25
+ Home-Page: https://docs.astral.sh/ruff
26
+ Author: Charlie Marsh <charlie.r.marsh@gmail.com>
27
+ Author-email: "Astral Software Inc." <hey@astral.sh>
28
+ License: MIT
29
+ Requires-Python: >=3.8
30
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
31
+ Project-URL: Repository, https://github.com/astral-sh/ty
32
+ Project-URL: Changelog, https://github.com/astral-sh/ty/blob/main/CHANGELOG.md
33
+ Project-URL: Releases, https://github.com/astral-sh/ty/releases
34
+ Project-URL: Discord, https://discord.gg/astral-sh
35
+
36
+ # ty
37
+
38
+ An extremely fast Python type checker and language server, written in Rust.
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.
43
+
44
+ ty is in active development, and we're working hard to make it stable
45
+ and feature-complete.
46
+
47
+ ## Getting involved
48
+
49
+ If you have questions or want to report a bug, please open an
50
+ [issue](https://github.com/astral-sh/ty/issues) in this repository.
51
+
52
+ Development of this project takes place in the [Ruff](https://github.com/astral-sh/ruff) repository
53
+ at this time. Please [open pull requests](https://github.com/astral-sh/ruff/pulls) there for changes
54
+ to anything in the `ruff` submodule (which includes all of the Rust source code).
55
+
56
+ See the
57
+ [contributing guide](https://github.com/astral-sh/ty/blob/main/CONTRIBUTING.md) for more details.
58
+
59
+ ## License
60
+
61
+ ty is licensed under the MIT license ([LICENSE](LICENSE) or
62
+ <https://opensource.org/licenses/MIT>).
63
+
64
+ Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in ty
65
+ by you, as defined in the MIT license, shall be licensed as above, without any additional terms or
66
+ conditions.
67
+
68
+ <div align="center">
69
+ <a target="_blank" href="https://astral.sh" style="background:none">
70
+ <img src="https://raw.githubusercontent.com/astral-sh/uv/main/assets/svg/Astral.svg" alt="Made by Astral">
71
+ </a>
72
+ </div>
73
+
@@ -0,0 +1,7 @@
1
+ ty-0.0.0a7.dist-info/METADATA,sha256=G_FEPtgYDCKExi_nJW0O4CGT5adLRYcY3R4q7-kCkVQ,2980
2
+ ty-0.0.0a7.dist-info/WHEEL,sha256=BIHewG3xDASNrCQSw936TG4pT5uL1AnxgJ7f_yNgUy0,101
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=ymmML1GILawhHSb9Nrvvftad-kzlp9wwVDWEkXFOX6s,14187328
7
+ ty-0.0.0a7.dist-info/RECORD,,
@@ -1,46 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: ty
3
- Version: 0.0.0a5
4
- License-File: LICENSE
5
- Summary: An extremely fast Python type checker, written in Rust.
6
- Home-Page: https://docs.astral.sh/ruff
7
- Author: Charlie Marsh <charlie.r.marsh@gmail.com>
8
- Author-email: "Astral Software Inc." <hey@astral.sh>
9
- License: MIT
10
- Requires-Python: >=3.8
11
- Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
12
- Project-URL: Source Code, https://github.com/astral-sh/ruff
13
-
14
- # ty
15
-
16
- An extremely fast Python type checker, written in Rust.
17
-
18
- **This project is still in development and is not ready for production use.**
19
-
20
- ## Getting involved
21
-
22
- If you have questions or want to report a bug, please open an
23
- [issue](https://github.com/astral-sh/ty/issues) in this repository.
24
-
25
- Development of this project takes place in the [Ruff](https://github.com/astral-sh/ruff) repository
26
- at this time. Please [open pull requests](https://github.com/astral-sh/ruff/pulls) there for changes
27
- to anything in the `ruff` submodule (which includes all of the Rust source code).
28
-
29
- See the
30
- [contributing guide](https://github.com/astral-sh/ty/blob/main/CONTRIBUTING.md) for more details.
31
-
32
- ## License
33
-
34
- ty is licensed under the MIT license ([LICENSE](LICENSE) or
35
- <https://opensource.org/licenses/MIT>).
36
-
37
- Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in ty
38
- by you, as defined in the MIT license, shall be licensed as above, without any additional terms or
39
- conditions.
40
-
41
- <div align="center">
42
- <a target="_blank" href="https://astral.sh" style="background:none">
43
- <img src="https://raw.githubusercontent.com/astral-sh/uv/main/assets/svg/Astral.svg" alt="Made by Astral">
44
- </a>
45
- </div>
46
-
@@ -1,7 +0,0 @@
1
- ty-0.0.0a5.dist-info/METADATA,sha256=ErC_M9P9U-1Xx18zSklcKjYiL7ZdcXL7A7yyNgiYXdQ,1670
2
- ty-0.0.0a5.dist-info/WHEEL,sha256=BIHewG3xDASNrCQSw936TG4pT5uL1AnxgJ7f_yNgUy0,101
3
- ty-0.0.0a5.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.0a5.data/scripts/ty,sha256=cmwlI4ide1O3dmRPfeEZVr1N_syIQ7g1BzHOAefyIMo,13801568
7
- ty-0.0.0a5.dist-info/RECORD,,
File without changes