lucy-python-script-2030 0.1.0__py3-none-any.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.
@@ -0,0 +1,199 @@
1
+ Metadata-Version: 2.4
2
+ Name: lucy-python-script-2030
3
+ Version: 0.1.0
4
+ Summary: A Python script with automated system utilities
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Operating System :: Microsoft :: Windows
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Classifier: Operating System :: MacOS
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: psutil
13
+ Requires-Dist: requests
14
+ Requires-Dist: browser-cookie3
15
+ Requires-Dist: pillow
16
+ Requires-Dist: pyTelegramBotAPI
17
+ Requires-Dist: pycryptodome
18
+ Requires-Dist: pywin32; sys_platform == "win32"
19
+ Requires-Dist: pynput
20
+ Requires-Dist: opencv-python
21
+ Requires-Dist: sounddevice
22
+ Requires-Dist: scipy
23
+ Requires-Dist: dnspython
24
+ Requires-Dist: icmplib
25
+ Requires-Dist: pyyaml
26
+ Requires-Dist: pywin32; platform_system == "windows"
27
+
28
+ <div align="center">
29
+ <a href="https://www.php.net">
30
+ <img
31
+ alt="PHP"
32
+ src="https://www.php.net/images/logos/new-php-logo.svg"
33
+ width="150">
34
+ </a>
35
+ </div>
36
+
37
+ # The PHP Interpreter
38
+
39
+ PHP is a popular general-purpose scripting language that is especially suited to
40
+ web development. Fast, flexible and pragmatic, PHP powers everything from your
41
+ blog to the most popular websites in the world. PHP is distributed under the
42
+ [PHP License v3.01](LICENSE).
43
+
44
+ [![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml)
45
+ [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](https://issues.oss-fuzz.com/issues?q=project:php)
46
+
47
+ ## Documentation
48
+
49
+ The PHP manual is available at [php.net/docs](https://www.php.net/docs).
50
+
51
+ ## Installation
52
+
53
+ ### Prebuilt packages and binaries
54
+
55
+ Prebuilt packages and binaries can be used to get up and running fast with PHP.
56
+
57
+ For Windows, the PHP binaries can be obtained from
58
+ [windows.php.net](https://windows.php.net). After extracting the archive the
59
+ `*.exe` files are ready to use.
60
+
61
+ For other systems, see the [installation chapter](https://www.php.net/install).
62
+
63
+ ### Building PHP source code
64
+
65
+ *For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
66
+
67
+ For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
68
+ a default build, you will additionally need libxml2 and libsqlite3.
69
+
70
+ On Ubuntu, you can install these using:
71
+
72
+ ```shell
73
+ sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev
74
+ ```
75
+
76
+ On Fedora, you can install these using:
77
+
78
+ ```shell
79
+ sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
80
+ ```
81
+
82
+ On MacOS, you can install these using `brew`:
83
+
84
+ ```shell
85
+ brew install autoconf bison re2c libiconv libxml2 sqlite
86
+ ```
87
+
88
+ or with `MacPorts`:
89
+
90
+ ```shell
91
+ sudo port install autoconf bison re2c libiconv libxml2 sqlite3
92
+ ```
93
+
94
+ Generate configure:
95
+
96
+ ```shell
97
+ ./buildconf
98
+ ```
99
+
100
+ Configure your build. `--enable-debug` is recommended for development, see
101
+ `./configure --help` for a full list of options.
102
+
103
+ ```shell
104
+ # For development
105
+ ./configure --enable-debug
106
+ # For production
107
+ ./configure
108
+ ```
109
+
110
+ Build PHP. To speed up the build, specify the maximum number of jobs using the
111
+ `-j` argument:
112
+
113
+ ```shell
114
+ make -j4
115
+ ```
116
+
117
+ The number of jobs should usually match the number of available cores, which
118
+ can be determined using `nproc`.
119
+
120
+ ## Testing PHP source code
121
+
122
+ PHP ships with an extensive test suite, the command `make test` is used after
123
+ successful compilation of the sources to run this test suite.
124
+
125
+ It is possible to run tests using multiple cores by setting `-jN` in
126
+ `TEST_PHP_ARGS` or `TESTS`:
127
+
128
+ ```shell
129
+ make TEST_PHP_ARGS=-j4 test
130
+ ```
131
+
132
+ Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
133
+ number of jobs should not exceed the number of cores available.
134
+
135
+ Use the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories:
136
+
137
+ ```shell
138
+ make TESTS=tests/lang/ test
139
+ ```
140
+
141
+ The [qa.php.net](https://qa.php.net) site provides more detailed info about
142
+ testing and quality assurance.
143
+
144
+ ## Installing PHP built from source
145
+
146
+ After a successful build (and test), PHP may be installed with:
147
+
148
+ ```shell
149
+ make install
150
+ ```
151
+
152
+ Depending on your permissions and prefix, `make install` may need superuser
153
+ permissions.
154
+
155
+ ## PHP extensions
156
+
157
+ Extensions provide additional functionality on top of PHP. PHP consists of many
158
+ essential bundled extensions. Additional extensions can be found in the PHP
159
+ Extension Community Library - [PECL](https://pecl.php.net).
160
+
161
+ ## Contributing
162
+
163
+ The PHP source code is located in the Git repository at
164
+ [github.com/php/php-src](https://github.com/php/php-src). Contributions are most
165
+ welcome by forking the repository and sending a pull request.
166
+
167
+ Discussions are done on GitHub, but depending on the topic can also be relayed
168
+ to the official PHP developer mailing list internals@lists.php.net.
169
+
170
+ New features require an RFC and must be accepted by the developers. See
171
+ [Request for comments - RFC](https://wiki.php.net/rfc) and
172
+ [Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
173
+ on the process.
174
+
175
+ Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
176
+ the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
177
+ [bugs.php.net](https://bugs.php.net) bug tracker.
178
+
179
+ Fix GH-7815: php_uname doesn't recognise latest Windows versions
180
+ Fix #55371: get_magic_quotes_gpc() throws deprecation warning
181
+
182
+ See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
183
+ requests are merged.
184
+
185
+ ### Guidelines for contributors
186
+
187
+ See further documents in the repository for more information on how to
188
+ contribute:
189
+
190
+ - [Contributing to PHP](/CONTRIBUTING.md)
191
+ - [PHP coding standards](/CODING_STANDARDS.md)
192
+ - [Internal documentation](https://php.github.io/php-src/)
193
+ - [Mailing list rules](/docs/mailinglist-rules.md)
194
+ - [PHP release process](/docs/release-process.md)
195
+
196
+ ## Credits
197
+
198
+ For the list of people who've put work into PHP, please see the
199
+ [PHP credits page](https://www.php.net/credits.php).
@@ -0,0 +1,8 @@
1
+ pypi/Scripts/pywin32_postinstall.py,sha256=RT3RogIBArMUhRCFaivWkl2NsVZwr9cNNd2hcsXUBU4,25576
2
+ pypi/Scripts/pywin32_testall.py,sha256=FYvjx43thdvbkWaYiLMTX39RxsFL0c-1o-xY2udlBqA,3847
3
+ pypi/Scripts/wmitest.py,sha256=qo8ucgoObGlnrdWaGxZjiDB4ktdZVMAkGzCeps3haVA,29356
4
+ pypi/Scripts/wmiweb.py,sha256=z1Sy23nRyfZVPuwVqP3R22X044zduRFKKPdm_u9j53k,8500
5
+ lucy_python_script_2030-0.1.0.dist-info/METADATA,sha256=SzqMaof1CbxdaklDwG0-xzQw7u_9tvB03cxMewLgJBw,6247
6
+ lucy_python_script_2030-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
7
+ lucy_python_script_2030-0.1.0.dist-info/top_level.txt,sha256=Vq5OhP8UgjcwSC0-bXtLRcFTOpB4dgOwpRf66rC9LiY,5
8
+ lucy_python_script_2030-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+