Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9124852
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1015 B
Subscribers
None
View Options
diff --git a/setup.py b/setup.py
index c475046..6192de7 100644
--- a/setup.py
+++ b/setup.py
@@ -1,28 +1,29 @@
from setuptools import setup
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)
return requirements
setup(
name='swh.loader.tar',
description='Software Heritage Tarball Loader',
author='Software Heritage developers',
author_email='swh-devel@inria.fr',
url='https://forge.softwareheritage.org/diffusion/DLDTAR',
packages=['swh.loader.tar', 'swh.loader.tar.tests'],
- scripts=['bin/swh-loader-tar-producer'],
+ scripts=['bin/swh-loader-tar-producer',
+ 'bin/swh-diff-db-mirror'],
install_requires=parse_requirements(),
setup_requires=['vcversioner'],
vcversioner={},
include_package_data=True,
)
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Jun 21, 7:39 PM (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3341489
Attached To
rDLDTAR Tarball Loader
Event Timeline
Log In to Comment