shipit-cli 0.1.0__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,13 @@
1
+ .shipit
2
+ **/.shipit
3
+ *.pyc
4
+ __pycache__
5
+ .DS_Store
6
+ .vscode
7
+ .idea
8
+ .venv
9
+ .env
10
+ .env.local
11
+ .env.development.local
12
+ .env.test.local
13
+ .env.production.local
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: shipit-cli
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Project-URL: homepage, https://wasmer.io
6
+ Project-URL: repository, https://github.com/wasmerio/shipit
7
+ Project-URL: Changelog, https://github.com/wasmerio/shipit/changelog
8
+ Requires-Python: >=3.10
9
+ Requires-Dist: rich>=14.1.0
10
+ Requires-Dist: sh>=2.2.2
11
+ Requires-Dist: starlark-pyo3>=2025.1
12
+ Requires-Dist: tomlkit>=0.13.3
13
+ Requires-Dist: typer>=0.16.1
File without changes
@@ -0,0 +1,35 @@
1
+ [project]
2
+ name = "shipit-cli"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = [
8
+ "rich>=14.1.0",
9
+ "sh>=2.2.2",
10
+ "starlark-pyo3>=2025.1",
11
+ "tomlkit>=0.13.3",
12
+ "typer>=0.16.1",
13
+ ]
14
+
15
+ [project.urls]
16
+ homepage = "https://wasmer.io"
17
+ repository = "https://github.com/wasmerio/shipit"
18
+ "Changelog" = "https://github.com/wasmerio/shipit/changelog"
19
+
20
+ [project.scripts]
21
+ shipit = "shipit.cli:main"
22
+
23
+ [build-system]
24
+ requires = ["hatchling"]
25
+ build-backend = "hatchling.build"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/shipit"]
29
+ [tool.hatch.build.targets.sdist]
30
+ only-include = ["src/shipit", "tests"]
31
+
32
+ [tool.uv]
33
+ dev-dependencies = [
34
+ "pytest>=8.2",
35
+ ]
File without changes
@@ -0,0 +1,103 @@
1
+ ;; Based on https://github.com/php/php-src/blob/master/php.ini-production
2
+
3
+ [PHP]
4
+ engine = On
5
+ short_open_tag = Off
6
+ precision = 14
7
+ output_buffering = 4096
8
+ zlib.output_compression = Off
9
+ implicit_flush = Off
10
+ unserialize_callback_func =
11
+ serialize_precision = -1
12
+ disable_functions =
13
+ disable_classes =
14
+ zend.enable_gc = On
15
+ zend.exception_ignore_args = On
16
+ zend.exception_string_param_max_len = 0
17
+ expose_php = On
18
+ max_execution_time = 30
19
+ max_input_time = 60
20
+ memory_limit = -1
21
+ error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
22
+ display_errors = Off
23
+ display_startup_errors = Off
24
+ log_errors = On
25
+ ignore_repeated_errors = Off
26
+ ignore_repeated_source = Off
27
+ report_memleaks = On
28
+ variables_order = "GPCS"
29
+ request_order = "GP"
30
+ register_argc_argv = Off
31
+ auto_globals_jit = On
32
+ post_max_size = 0
33
+ auto_prepend_file =
34
+ auto_append_file =
35
+ default_mimetype = "text/html"
36
+ default_charset = "UTF-8"
37
+ doc_root =
38
+ user_dir =
39
+ enable_dl = Off
40
+ file_uploads = On
41
+ upload_max_filesize = 0
42
+ max_file_uploads = 20
43
+ allow_url_fopen = On
44
+ allow_url_include = Off
45
+ default_socket_timeout = 60
46
+ SMTP = localhost
47
+ smtp_port = 25
48
+ mail.add_x_header = Off
49
+ mail.mixed_lf_and_crlf = Off
50
+ odbc.allow_persistent = On
51
+ odbc.check_persistent = On
52
+ odbc.max_persistent = -1
53
+ odbc.max_links = -1
54
+ odbc.defaultlrl = 4096
55
+ odbc.defaultbinmode = 1
56
+ mysqli.max_persistent = -1
57
+ mysqli.allow_persistent = On
58
+ mysqli.max_links = -1
59
+ mysqli.default_port = 3306
60
+ mysqli.default_socket =
61
+ mysqli.default_host =
62
+ mysqli.default_user =
63
+ mysqli.default_pw =
64
+ mysqlnd.collect_statistics = On
65
+ mysqlnd.collect_memory_statistics = Off
66
+ pgsql.allow_persistent = On
67
+ pgsql.auto_reset_persistent = Off
68
+ pgsql.max_persistent = -1
69
+ pgsql.max_links = -1
70
+ pgsql.ignore_notice = 0
71
+ pgsql.log_notice = 0
72
+ bcmath.scale = 0
73
+ session.save_handler = files
74
+ session.use_strict_mode = 0
75
+ session.use_cookies = 1
76
+ session.use_only_cookies = 1
77
+ session.name = PHPSESSID
78
+ session.auto_start = 0
79
+ session.cookie_lifetime = 0
80
+ session.cookie_path = /
81
+ session.cookie_domain =
82
+ session.cookie_httponly =
83
+ session.cookie_samesite =
84
+ session.serialize_handler = php
85
+ session.gc_probability = 1
86
+ session.gc_divisor = 1000
87
+ session.gc_maxlifetime = 1440
88
+ session.cache_limiter = nocache
89
+ session.cache_expire = 180
90
+ session.use_trans_sid = 0
91
+ session.sid_length = 26
92
+ session.trans_sid_tags = "a=href,area=href,frame=src,form="
93
+ session.sid_bits_per_character = 5
94
+ zend.assertions = -1
95
+ tidy.clean_output = Off
96
+ soap.wsdl_cache_enabled = 1
97
+ soap.wsdl_cache_dir = "/tmp"
98
+ soap.wsdl_cache_ttl = 86400
99
+ soap.wsdl_cache_limit = 5
100
+ ldap.max_links = -1
101
+
102
+ [Pdo_mysql]
103
+ pdo_mysql.default_socket =