Skip to content
Snippets Groups Projects
Commit c93ba194 authored by Jiří Kalvoda's avatar Jiří Kalvoda
Browse files

prace: jk_web jako modul

parent d94d2095
No related branches found
No related tags found
No related merge requests found
[submodule "prace/jk_web"]
path = prace/jk_web
url = git@gitlab.kam.mff.cuni.cz:jirikalvoda/jk-web.git
Subproject commit 0693962e7de332d9f07a842f14246f34ff7cda46
...@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" ...@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "bakalarka" name = "bakalarka"
# version = "0.0.1" # version = "0.0.1"
dynamic = ["version"] dynamic = ["version", "dependencies"]
authors = [ authors = [
{ name="Jiří Kalvoda", email="jirikalvoda@kam.mff.cuni.cz" }, { name="Jiří Kalvoda", email="jirikalvoda@kam.mff.cuni.cz" },
] ]
...@@ -16,15 +16,6 @@ classifiers = [ ...@@ -16,15 +16,6 @@ classifiers = [
"Operating System :: Linux", "Operating System :: Linux",
] ]
dependencies = [
"jk_web @ git+https://gitlab.kam.mff.cuni.cz/jirikalvoda/jk-web.git#egg=jk-web",
"numpy",
"kaleido",
"mathjax",
"scipy",
"scikit-learn",
]
[project.urls] [project.urls]
"Homepage" = "https://gitlab.kam.mff.cuni.cz/jirikalvoda/binary-paint-shop-problem.git" "Homepage" = "https://gitlab.kam.mff.cuni.cz/jirikalvoda/binary-paint-shop-problem.git"
......
from pathlib import Path
from setuptools import setup
# This is where you add any fancy path resolution to the local lib:
local_path: str = (Path(__file__).parent).as_uri()
setup(
install_requires=[
f"jk_web @ {local_path}/jk_web",
"numpy",
"kaleido",
"mathjax",
"scipy",
"scikit-learn",
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment