Newer
Older
# Use this guide:
# https://packaging.python.org/tutorials/packaging-projects/
# from unitgrade.version import __version__
with open("src/unitgrade/version.py", "r", encoding="utf-8") as fh:
# long_description = fh.read()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
author="Tue Herlau",
author_email="tuhe@dtu.dk",
description="A student homework/exam evaluation framework build on pythons unittest framework.",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Bug Tracker": "https://lab.compute.dtu.dk/tuhe/unitgrade/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.8",
license="MIT",
install_requires=['numpy', 'tabulate', "pyfiglet", "coverage", "colorama", 'tqdm', 'importnb'],