Include tests in source distribution and use new website

This commit is contained in:
Torsten Grote 2018-01-18 12:24:37 -02:00
parent ea777dc76f
commit af97f749ac
No known key found for this signature in database
GPG Key ID: 3E5F77D92CF891FF
2 changed files with 3 additions and 5 deletions

View File

@ -1,7 +1,6 @@
include LICENSE
include README.md
graft repomaker
prune repomaker/tests
graft repomaker-static
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.py[co]

View File

@ -5,7 +5,7 @@ from repomaker import VERSION
DATA_PREFIX = os.path.join('share', 'repomaker')
packages = find_packages(exclude=['*.tests*'])
packages = find_packages()
print("Packages: %s" % str(packages))
setup(
@ -14,8 +14,7 @@ setup(
packages=packages + ['repomaker-static'],
description='Create F-Droid repositories with ease',
license='AGPL-3.0',
# TODO Repomaker Website https://gitlab.com/fdroid/fdroid-website/issues/70
url='https://gitlab.com/fdroid/repomaker',
url='https://f-droid.org/repomaker/',
python_requires='>=3',
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's