forked from project-receptor/receptor-stresstest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 745 Bytes
/
setup.py
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
#!/usr/bin/env python
# Copyright (c) 2020 Red Hat, Inc.
# All Rights Reserved.
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="receptor-stresstest",
version="1.0.0",
author="jag",
url="https://github.com/project-receptor/receptor-stresstest",
license="GPLv3",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[],
zip_safe=False,
entry_points={"receptor.worker": "receptor_stresstest = receptor_stresstest.worker",},
classifiers=["Programming Language :: Python :: 3",],
extras_require={"dev": ["pytest", "flake8", "pylint", "black"]},
)