Skip to content

Commit a379203

Browse files
authored
Merge pull request #24 from adybbroe/leave-python2
Skip Python2 support and require python 3.6 or higher
2 parents 0e003f0 + 789cf82 commit a379203

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
description-file = README.md
33

44
[bdist_rpm]
5-
requires=python python-six
65
release=1
76

87
[bdist_wheel]

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2014, 2015
4+
# Copyright (c) 2014-2022 trollsift developers
55
#
66
# Author(s):
77
#
@@ -32,8 +32,9 @@
3232
cmdclass=versioneer.get_cmdclass(),
3333
description='String parser/formatter',
3434
long_description=README,
35-
author='Panu Lahtinen',
36-
author_email='panu.lahtinen@fmi.fi',
35+
long_description_content_type='text/x-rst',
36+
author='The Pytroll Team',
37+
author_email='pytroll@googlegroups.com',
3738
classifiers=["Development Status :: 5 - Production/Stable",
3839
"Intended Audience :: Science/Research",
3940
"License :: OSI Approved :: GNU General Public License v3 " +
@@ -46,6 +47,7 @@
4647
packages=['trollsift'],
4748
keywords=["string parsing", "string formatting", "pytroll"],
4849
zip_safe=False,
50+
python_requires='>=3.6',
4951
install_requires=[],
5052
tests_require=['pytest']
5153
)

0 commit comments

Comments
 (0)