diff --git a/AUTHORS b/AUTHORS index 7a5c79d..27d038e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,3 @@ -Copyright (C) 2015-2016 The Software Heritage developers +Copyright (C) 2015-2017 The Software Heritage developers See http://www.softwareheritage.org/ for more information. diff --git a/requirements.txt b/requirements.txt index 151b926..395e12a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ # Add here external Python modules dependencies, one per line. Module names # should match https://pypi.python.org/pypi names. For the full spec or # dependency lines, see https://pip.readthedocs.org/en/1.1/requirements.html vcversioner +sphinx >= 1.3 diff --git a/setup.py b/setup.py index 2f587b7..9b00bd8 100644 --- a/setup.py +++ b/setup.py @@ -1,30 +1,28 @@ from setuptools import setup def parse_requirements(): requirements = [] 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 -# Edit this part to match your module -# full sample: https://forge.softwareheritage.org/diffusion/DCORE/browse/master/setup.py setup( - name='swh.', - description='Software Heritage ', + name='swh.docs', + description='Software Heritage development documentation', author='Software Heritage developers', author_email='swh-devel@inria.fr', - url='https://forge.softwareheritage.org/diffusion/', - packages=[], # packages's modules + url='https://forge.softwareheritage.org/source/swh-docs/', + packages=['swh.docs'], # packages's modules scripts=[], # scripts to package install_requires=parse_requirements(), setup_requires=['vcversioner'], vcversioner={}, include_package_data=True, ) diff --git a/swh/foo/bar.py b/swh/foo/bar.py deleted file mode 100644 index 8dd21f7..0000000 --- a/swh/foo/bar.py +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright (C) 2015-2016 The Software Heritage developers -# See the AUTHORS file at the top-level directory of this distribution -# License: GNU General Public License version 3, or any later version -# See top-level LICENSE file for more information