Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pydtnsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
discus
pydtnsim
Merge requests
!21
Couldn't fetch the linked file.
pydtn agkmeans and version 1.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
pydtn agkmeans and version 1.0
summer2022
into
develop
Overview
0
Commits
60
Pipelines
1
Changes
1
Merged
Hunter McConnell (rtm534)
requested to merge
summer2022
into
develop
2 years ago
Overview
0
Commits
60
Pipelines
1
Changes
1
Expand
Fatemeh's agkmeans, basic gui, prophet Version used for paper
0
0
Merge request reports
Viewing commit
61bf0aab
Prev
Next
Show latest version
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
61bf0aab
fix setup error
· 61bf0aab
ArktikHunter
authored
2 years ago
setup.py
+
3
−
1
Options
#!/usr/bin/env python
"""
Set up features.
"""
from
distutils.core
import
setup
from
os
import
path
@@ -8,7 +10,7 @@ def extract_version():
with
open
(
path
.
join
(
'
pydtnsim
'
,
'
__init__.py
'
))
as
f
:
for
line
in
f
:
if
line
.
startswith
(
'
__version__
'
):
return
line
.
split
(
'
"'
)[
1
]
return
line
.
split
(
"'
"
)[
1
]
def
extract_requirements
():
"""
Extract requirements function.
"""
Loading