Skip to content
Snippets Groups Projects
Commit 2cade8d5 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Add package data

parent 3bea28d9
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,4 @@
.coverage
.eggs/
__pycache__
version.txt
include Makefile
include requirements.txt
include version.txt
swh-web-ui (0.0.1-1) unstable; urgency=low
* Import initial source package.
-- Antoine R. Dumont <antoine.romain.dumont@gmail.com> Wed, 30 Sep 2015 16:24:02 +0200
9
Source: swh-web-ui
Maintainer: Software Heritage developers <swh-devel@inria.fr>
Section: python
Priority: optional
Build-Depends: debhelper (>= 9),
dh-python,
python3-all,
python3-nose,
python3-setuptools,
python3-swh.core,
python3-swh.storage,
python3-vcversioner
Standards-Version: 3.9.6
Homepage: https://forge.softwareheritage.org/diffusion/DWUI/
Package: python3-swh.web.ui
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Software Heritage Web UI
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
Copyright: 2015 The Software Heritage developers
License: GPL-3+
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public
License version 3 can be found in `/usr/share/common-licenses/GPL-3'.
#!/usr/bin/make -f
export PYBUILD_NAME=swh-web-ui
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_test:
3.0 (quilt)
setup.py 0 → 100755
#!/usr/bin/env python3
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.web.ui',
description='Software Heritage Web UI',
author='Software Heritage developers',
author_email='swh-devel@inria.fr',
url='https://forge.softwareheritage.org/diffusion/DWUI/',
packages=['swh.web.ui', 'swh.web.ui.tests'],
scripts=['bin/swh-web-ui'],
install_requires=parse_requirements(),
setup_requires=['vcversioner'],
vcversioner={},
include_package_data=True,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment