-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 933 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 933 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
32
33
34
35
"""stac-api-load-testing setup.py."""
from setuptools import setup
__version__ = "0.2.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="stac_api_load_testing",
version=__version__,
description="Load testing for stac compliant apis",
url="https://github.com/Healy-Hyperspatial/stac-api-load-testing",
include_package_data=True,
install_requires=[
"click>=7.1.2",
"locust",
"setuptools",
"Cython",
"bzt",
],
packages=["stac_api_load_testing"],
entry_points={
"console_scripts": ["stac-api-load-testing=stac_api_load_testing.cli:main"]
},
author="Jonathan Healy",
author_email="jonathan.d.healy@gmail.com",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
extras_require={
"test": ["pytest"],
},
)