forked from MarkUsProject/markus-autotesting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 994 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
26
27
28
29
30
from setuptools import setup, find_packages
test_exclusions = ["*.tests", "*.tests.*", "tests.*", "tests"]
setup(
name="markus-autotester",
version="2.0",
description="Automatic tester for programming assignments",
url="https://github.com/MarkUsProject/markus-autotesting",
author="Misha Schwartz, Alessio Di Sandro",
license="MIT",
package_dir={"": "src"},
packages=find_packages(where="src", exclude=test_exclusions),
zip_safe=False,
install_requires=[
"redis==3.3.8",
"requests==2.22.0",
"rq==1.1.0",
"supervisor==4.1.0",
"PyYAML==5.1.2",
"psycopg2-binary==2.8.4",
"markusapi==0.0.1",
"jsonschema==3.0.2",
],
tests_require=["pytest==5.3.1", "hypothesis==4.47.3", "fakeredis==1.1.0"],
setup_requires=["pytest-runner"],
include_package_data=True,
entry_points={"console_scripts": "markus_autotester = autotester.cli:cli"},
)