Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Learn Renku
Teaching on Renku
Advanced teaching automation
Commits
ca36e3ef
Commit
ca36e3ef
authored
Mar 11, 2022
by
Cyril Matthey-Doret
Browse files
add files for local package install
parent
3a418bcd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Makefile
0 → 100644
View file @
ca36e3ef
.PHONY
:
build install test clean deploy apidoc
install
:
pip
install
-e
.
uninstall
:
pip uninstall teach-utils
test
:
pytest
--doctest-modules
teach_utils
requirements.txt
View file @
ca36e3ef
click
requests
pytz
setup.py
0 → 100644
View file @
ca36e3ef
from
setuptools
import
setup
,
find_packages
with
open
(
"requirements.txt"
,
"r"
)
as
f
:
REQUIREMENTS
=
f
.
read
()
setup
(
name
=
"teach_utils"
,
version
=
"0.1"
,
packages
=
find_packages
(),
install_requires
=
REQUIREMENTS
,
license
=
"GPLv3"
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment