Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pikatasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
django
pikatasks
Commits
5bcf3c33
Commit
5bcf3c33
authored
6 years ago
by
Fynn Becker
Browse files
Options
Downloads
Patches
Plain Diff
Remove pip magic since it isn't public API
parent
92258d23
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
requirements.txt
+0
-2
0 additions, 2 deletions
requirements.txt
setup.py
+4
-11
4 additions, 11 deletions
setup.py
with
4 additions
and
13 deletions
requirements.txt
deleted
100644 → 0
+
0
−
2
View file @
92258d23
pika
>=0.11
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
11
View file @
5bcf3c33
import
os
from
setuptools
import
setup
,
find_packages
from
pip.req.req_file
import
parse_requirements
from
pip.download
import
PipSession
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
README.md
"
)).
read
()
...
...
@@ -9,13 +7,6 @@ README = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
def
get_requirements_list
():
filename
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
requirements.txt
"
)
objects
=
list
(
parse_requirements
(
filename
,
session
=
PipSession
()))
strings
=
[
str
(
o
.
req
)
for
o
in
objects
]
return
strings
setup
(
name
=
'
pikatasks
'
,
version
=
'
1.0
'
,
...
...
@@ -28,7 +19,9 @@ setup(
author
=
'
Art Lukyanchyk
'
,
author_email
=
'
artiom.lukyanchyk@hs-hannover.de
'
,
zip_safe
=
False
,
install_requires
=
get_requirements_list
(),
install_requires
=
[
'
pika>=0.11
'
],
classifiers
=
[
'
Environment :: Server
'
,
'
Framework :: pika
'
,
...
...
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