Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pip-deps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
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
SCS
pip-deps
Commits
1335ea8b
Commit
1335ea8b
authored
6 years ago
by
Marek Chrastina
Browse files
Options
Downloads
Patches
Plain Diff
Add setup.py and __init__.py
parent
ef9d4d04
No related branches found
No related tags found
No related merge requests found
Pipeline
#7888
failed
6 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pip-upgradedependencies/__init__.py
+1
-0
1 addition, 0 deletions
pip-upgradedependencies/__init__.py
pip-upgradedependencies/pip-upgradedependencies.py
+0
-0
0 additions, 0 deletions
pip-upgradedependencies/pip-upgradedependencies.py
setup.py
+24
-0
24 additions, 0 deletions
setup.py
with
25 additions
and
0 deletions
pip-upgradedependencies/__init__.py
0 → 100644
+
1
−
0
View file @
1335ea8b
__import__
(
'
pkg_resources
'
).
declare_namespace
(
__name__
)
This diff is collapsed.
Click to expand it.
pip-upgradedependencies.py
→
pip-upgradedependencies/
pip-upgradedependencies.py
+
0
−
0
View file @
1335ea8b
File moved
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
24
−
0
View file @
1335ea8b
from
setuptools
import
setup
,
find_packages
setup
(
name
=
'
pip-upgradedependencies
'
,
version
=
'
0.0.1
'
,
description
=
'
Pip-upgradedependencies upgrades all outdated packages with respect to existing dependencies.
'
,
classifiers
=
[
'
Operating System :: POSIX :: Linux
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: Python :: 2.7
'
,
'
Topic :: Software Development :: Libraries :: Python Modules
'
,
],
author
=
'
IT4Innovations
'
,
author_email
=
'
support@it4i.cz
'
,
url
=
'
https://code.it4i.cz/sccs/pip-upgradedependencies
'
,
license
=
'
GPLv3+
'
,
packages
=
find_packages
(),
namespace_packages
=
[
'
pip-upgradedependencies
'
],
zip_safe
=
False
,
)
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