-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.4 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""Autograder.io CLI build and install configuration."""
import os
import io
import setuptools
# Read the contents of README file
PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(PROJECT_DIR, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="agiocli",
description="A command line interface to autograder.io",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version="0.5.1",
author="Andrew DeOrio",
author_email="[email protected]",
url="https://github.com/eecs485staff/agio-cli/",
license="MIT",
packages=["agiocli"],
keywords=[
"autograder", "autograder.io", "auto grader",
"agcli", "agio", "ag-cli", "agio-cli",
],
install_requires=[
"click",
"pick>=2.0.0",
"python-dateutil",
"requests",
],
extras_require={
"dev": [
"pdbpp",
"twine",
"tox",
],
"test": [
"check-manifest",
"freezegun",
"pycodestyle",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov",
"pytest-mock",
"requests-mock",
],
},
python_requires='>=3.7',
entry_points={
"console_scripts": [
"agio = agiocli.__main__:main",
]
},
)