set minimum Python version to 3.4
We use contructs introduced in 3.4, and 3.4 is really widely available. https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords
This commit is contained in:
parent
30c0d5f4d5
commit
96e71bfdb3
2
setup.py
2
setup.py
@ -17,6 +17,7 @@ setup(name='fdroidserver',
|
|||||||
author='The F-Droid Project',
|
author='The F-Droid Project',
|
||||||
author_email='team@f-droid.org',
|
author_email='team@f-droid.org',
|
||||||
url='https://f-droid.org',
|
url='https://f-droid.org',
|
||||||
|
license='AGPL-3.0',
|
||||||
packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
|
packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
|
||||||
scripts=['fdroid', 'fd-commit', 'makebuildserver'],
|
scripts=['fdroid', 'fd-commit', 'makebuildserver'],
|
||||||
data_files=[
|
data_files=[
|
||||||
@ -29,6 +30,7 @@ setup(name='fdroidserver',
|
|||||||
'examples/public-read-only-s3-bucket-policy.json',
|
'examples/public-read-only-s3-bucket-policy.json',
|
||||||
'examples/template.yml']),
|
'examples/template.yml']),
|
||||||
],
|
],
|
||||||
|
python_requires='>=3.4',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'clint',
|
'clint',
|
||||||
'GitPython',
|
'GitPython',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user