fory-compiler 0.0.1__tar.gz

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.
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: fory-compiler
3
+ Version: 0.0.1
4
+ Summary: FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization
5
+ License: Apache-2.0
6
+ Project-URL: Homepage, https://github.com/apache/fory
7
+ Project-URL: Documentation, https://fory.apache.org
8
+ Project-URL: Repository, https://github.com/apache/fory
9
+ Keywords: fory,serialization,codegen,idl,compiler
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Software Development :: Code Generators
21
+ Classifier: Topic :: Software Development :: Compilers
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: fory-compiler
3
+ Version: 0.0.1
4
+ Summary: FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization
5
+ License: Apache-2.0
6
+ Project-URL: Homepage, https://github.com/apache/fory
7
+ Project-URL: Documentation, https://fory.apache.org
8
+ Project-URL: Repository, https://github.com/apache/fory
9
+ Keywords: fory,serialization,codegen,idl,compiler
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Software Development :: Code Generators
21
+ Classifier: Topic :: Software Development :: Compilers
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ fory_compiler.egg-info/PKG-INFO
3
+ fory_compiler.egg-info/SOURCES.txt
4
+ fory_compiler.egg-info/dependency_links.txt
5
+ fory_compiler.egg-info/entry_points.txt
6
+ fory_compiler.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ foryc = fory_compiler.cli:main
@@ -0,0 +1 @@
1
+ fory_compiler
@@ -0,0 +1,55 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ [build-system]
19
+ requires = ["setuptools>=61.0"]
20
+ build-backend = "setuptools.build_meta"
21
+
22
+ [project]
23
+ name = "fory-compiler"
24
+ version = "0.0.1"
25
+ description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization"
26
+ readme = "README.md"
27
+ license = {text = "Apache-2.0"}
28
+ requires-python = ">=3.8"
29
+ classifiers = [
30
+ "Development Status :: 3 - Alpha",
31
+ "Intended Audience :: Developers",
32
+ "License :: OSI Approved :: Apache Software License",
33
+ "Programming Language :: Python :: 3",
34
+ "Programming Language :: Python :: 3.8",
35
+ "Programming Language :: Python :: 3.9",
36
+ "Programming Language :: Python :: 3.10",
37
+ "Programming Language :: Python :: 3.11",
38
+ "Programming Language :: Python :: 3.12",
39
+ "Programming Language :: Python :: 3.13",
40
+ "Topic :: Software Development :: Code Generators",
41
+ "Topic :: Software Development :: Compilers",
42
+ ]
43
+ keywords = ["fory", "serialization", "codegen", "idl", "compiler"]
44
+
45
+ [project.scripts]
46
+ foryc = "fory_compiler.cli:main"
47
+
48
+ [project.urls]
49
+ Homepage = "https://github.com/apache/fory"
50
+ Documentation = "https://fory.apache.org"
51
+ Repository = "https://github.com/apache/fory"
52
+
53
+ [tool.setuptools.packages.find]
54
+ where = ["."]
55
+ include = ["fory_compiler*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+