-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 914 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 914 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
from setuptools import setup, find_packages
setup(
name="AlgoGrade",
version="1.1.0",
author="artandfi (Artem Fisunenko)",
author_email="artyom.fisunenko@gmail.com",
description="A library for automated grading of algorithm-based assignments with grading of their intermediate stages. "
"The grading of some computational geometry assignments is provided out of the box.",
packages=find_packages(),
install_requires=[line.strip() for line in open("requirements.txt", "r").readlines()],
keywords=[
"Python3",
"automated grading",
"computational geometry",
"convex hull",
"region search",
"geometric search",
"point location",
"proximity",
"closest pair",
"closest points"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
)