Skip to content
Snippets Groups Projects
Commit 680f76d7 authored by tuhe's avatar tuhe
Browse files

Cleanup and checking 02465 compatibility; thtools removed

parent aa3f109b
No related branches found
No related tags found
No related merge requests found
Showing
with 68 additions and 3 deletions
File added
File added
File added
File added
File added
File added
# Use this guide:
# https://packaging.python.org/tutorials/packaging-projects/
# Use pipreqs.exe to get requirements list.
# py -m build && twine upload dist/*
import setuptools
import pkg_resources
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
beamer-slider
# beamer-slider
setuptools.setup(
name="coursebox",
version="0.0.1",
version="0.1.0",
author="Tue Herlau",
author_email="tuhe@dtu.dk",
description="A course management system currently used at DTU",
......@@ -27,5 +30,5 @@ setuptools.setup(
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.8",
install_requires=['jinja2',],
install_requires=[str(r) for r in pkg_resources.parse_requirements('requirements.txt')],
)
Metadata-Version: 2.1
Name: coursebox
Version: 0.1.0
Summary: A course management system currently used at DTU
Home-page: https://lab.compute.dtu.dk/tuhe/coursebox
Author: Tue Herlau
Author-email: tuhe@dtu.dk
License: MIT
Project-URL: Bug Tracker, https://lab.compute.dtu.dk/tuhe/coursebox/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
# coursebox
DTU course management
LICENSE
README.md
pyproject.toml
setup.py
src/coursebox/__init__.py
src/coursebox/setup_coursebox.py
src/coursebox/thtools_base.py
src/coursebox.egg-info/PKG-INFO
src/coursebox.egg-info/SOURCES.txt
src/coursebox.egg-info/dependency_links.txt
src/coursebox.egg-info/requires.txt
src/coursebox.egg-info/top_level.txt
src/coursebox/book/__init__.py
src/coursebox/book/exam_includer.py
src/coursebox/core/__init__.py
src/coursebox/core/citations.py
src/coursebox/core/info.py
src/coursebox/core/info_paths.py
src/coursebox/core/projects.py
src/coursebox/core/projects_info.py
src/coursebox/core/projects_plagiarism.py
src/coursebox/material/__init__.py
src/coursebox/material/homepage_lectures_exercises.py
src/coursebox/material/lecture_questions.py
src/coursebox/material/snipper.py
\ No newline at end of file
requirements.txt
coursebox
File added
File added
File added
File added
File added
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment