-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 895 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""Setup file for the HelmsDeep package."""
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="helmsdeep",
version="0.1.0",
author="Max Wang",
author_email="max@covar.com",
url="https://github.com/TranslatorSRI/StressTester",
description="HelmsDeep -- HTTP Endpoint Load Measurement System, "
"Determining Each Endpoint's Performance",
long_description_content_type="text/markdown",
long_description=readme,
packages=find_packages(),
include_package_data=True,
package_data={"helmsdeep": ["*.json"]},
zip_safe=False,
license="MIT",
python_requires=">=3.12",
install_requires=[
"locust>=2.38.1",
],
entry_points={
"console_scripts": [
"helmsdeep=helmsdeep.cli:main",
],
},
)