Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Binary paint shop problem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jiří Kalvoda
Binary paint shop problem
Commits
c93ba194
Commit
c93ba194
authored
1 year ago
by
Jiří Kalvoda
Browse files
Options
Downloads
Patches
Plain Diff
prace: jk_web jako modul
parent
d94d2095
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitmodules
+3
-0
3 additions, 0 deletions
.gitmodules
prace/jk_web
+1
-0
1 addition, 0 deletions
prace/jk_web
prace/pyproject.toml
+1
-10
1 addition, 10 deletions
prace/pyproject.toml
prace/setup.py
+16
-0
16 additions, 0 deletions
prace/setup.py
with
21 additions
and
10 deletions
.gitmodules
0 → 100644
+
3
−
0
View file @
c93ba194
[submodule "prace/jk_web"]
path = prace/jk_web
url = git@gitlab.kam.mff.cuni.cz:jirikalvoda/jk-web.git
This diff is collapsed.
Click to expand it.
jk_web
@
0693962e
Subproject commit 0693962e7de332d9f07a842f14246f34ff7cda46
This diff is collapsed.
Click to expand it.
prace/pyproject.toml
+
1
−
10
View file @
c93ba194
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
prace/setup.py
0 → 100644
+
16
−
0
View file @
c93ba194
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
"
,
]
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment