gatling 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,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2018, the respective contributors, as shown by the AUTHORS file.
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ * Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
gatling-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.2
2
+ Name: gatling
3
+ Version: 0.1.0
4
+ Summary: A Python project example
5
+ Home-page: https://github.com/MacroMozilla/gatling
6
+ Author: MacroMozilla
7
+ Author-email: honyzeng7@gmail.com
8
+ License: BSD-3-Clause
9
+ Project-URL: Homepage, https://github.com/MacroMozilla/gatling
10
+ Project-URL: Documentation, https://github.com/MacroMozilla/gatling/wiki
11
+ Project-URL: Repository, https://github.com/MacroMozilla/gatling
12
+ Requires-Python: >=3.10
13
+ License-File: LICENSE.txt
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: home-page
17
+ Dynamic: license
18
+ Dynamic: project-url
19
+ Dynamic: requires-python
20
+ Dynamic: summary
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
gatling-0.1.0/setup.py ADDED
@@ -0,0 +1,25 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ # 读取 requirements.txt
4
+ def read_requirements():
5
+ with open("src/gatling/requirements.txt", encoding="utf-8") as f:
6
+ return [line.strip() for line in f if line.strip() and not line.startswith("#")]
7
+
8
+ setup(
9
+ name="gatling",
10
+ version="0.1.0",
11
+ description="A Python project example",
12
+ author="MacroMozilla",
13
+ author_email="honyzeng7@gmail.com",
14
+ license="BSD-3-Clause",
15
+ packages=find_packages(where="src"),
16
+ package_dir={"": "src"},
17
+ install_requires=read_requirements(), # 读取 requirements.txt
18
+ python_requires=">=3.10",
19
+ url="https://github.com/MacroMozilla/gatling",
20
+ project_urls={
21
+ "Homepage": "https://github.com/MacroMozilla/gatling",
22
+ "Documentation": "https://github.com/MacroMozilla/gatling/wiki",
23
+ "Repository": "https://github.com/MacroMozilla/gatling",
24
+ },
25
+ )
File without changes
@@ -0,0 +1,16 @@
1
+ # This is a sample Python script.
2
+
3
+ # Press Shift+F10 to execute it or replace it with your code.
4
+ # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
5
+
6
+
7
+ def print_hi(name):
8
+ # Use a breakpoint in the code line below to debug your script.
9
+ print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
10
+
11
+
12
+ # Press the green button in the gutter to run the script.
13
+ if __name__ == '__main__':
14
+ print_hi('PyCharm')
15
+
16
+ # See PyCharm help at https://www.jetbrains.com/help/pycharm/
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.2
2
+ Name: gatling
3
+ Version: 0.1.0
4
+ Summary: A Python project example
5
+ Home-page: https://github.com/MacroMozilla/gatling
6
+ Author: MacroMozilla
7
+ Author-email: honyzeng7@gmail.com
8
+ License: BSD-3-Clause
9
+ Project-URL: Homepage, https://github.com/MacroMozilla/gatling
10
+ Project-URL: Documentation, https://github.com/MacroMozilla/gatling/wiki
11
+ Project-URL: Repository, https://github.com/MacroMozilla/gatling
12
+ Requires-Python: >=3.10
13
+ License-File: LICENSE.txt
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: home-page
17
+ Dynamic: license
18
+ Dynamic: project-url
19
+ Dynamic: requires-python
20
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ LICENSE.txt
2
+ README.md
3
+ setup.py
4
+ src/gatling/__init__.py
5
+ src/gatling/main.py
6
+ src/gatling.egg-info/PKG-INFO
7
+ src/gatling.egg-info/SOURCES.txt
8
+ src/gatling.egg-info/dependency_links.txt
9
+ src/gatling.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ gatling