Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7163759
D125.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
958 B
Subscribers
None
D125.diff
View Options
diff --git a/MANIFEST.in b/MANIFEST.in
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,4 @@
include Makefile
include requirements.txt
+include requirements-swh.txt
include version.txt
diff --git a/requirements-swh.txt b/requirements-swh.txt
new file mode 100644
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -3,13 +3,13 @@
def parse_requirements():
requirements = []
- with open('requirements.txt') as f:
- for line in f.readlines():
- line = line.strip()
- if not line or line.startswith('#'):
- continue
- requirements.append(line)
-
+ for reqf in ('requirements.txt', 'requirements-swh.txt'):
+ with open(reqf) as f:
+ for line in f.readlines():
+ line = line.strip()
+ if not line or line.startswith('#'):
+ continue
+ requirements.append(line)
return requirements
setup(
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 30, 2:49 PM (7 h, 29 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3219777
Attached To
D125: requirements: split internal and external requirements in two separate files
Event Timeline
Log In to Comment