-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.36 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.36 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import find_packages, setup
from locust.version import LOCUST_VERSION
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="bugout-locust",
version=LOCUST_VERSION,
packages=find_packages(),
install_requires=[
"pygit2",
"PyYAML",
"lxml",
"pydantic",
"protobuf==3.20.0",
"requests",
],
extras_require={
"dev": [
"black",
"mypy",
"wheel",
"mypy-protobuf",
"types-PyYAML",
"types-requests",
],
"distribute": ["twine"],
},
description="Locust: Track changes to Python code across git refs",
long_description=long_description,
long_description_content_type="text/markdown",
author="Neeraj Kashyap",
author_email="neeraj@bugout.dev",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
],
url="https://github.com/simiotics/locust",
entry_points={
"console_scripts": [
"locust=locust.cli:main",
"locust.version=locust.version:main",
"locust.git=locust.git:main",
"locust.parse=locust.parse:main",
"locust.render=locust.render:main",
"locust.github=locust.ci_helpers.github:main",
]
},
)