|
1 |
| -# Copyright (C) 2014-2020 Panos Kittenis. |
| 1 | +# Copyright (C) 2014-2022 Panos Kittenis. |
2 | 2 | #
|
3 | 3 | # This library is free software; you can redistribute it and/or
|
4 | 4 | # modify it under the terms of the GNU Lesser General Public
|
|
13 | 13 | # License along with this library; if not, write to the Free Software
|
14 | 14 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
15 | 15 |
|
16 |
| -import os |
17 |
| -import platform |
18 | 16 | from setuptools import setup, find_packages
|
19 |
| -from platform import python_version |
20 | 17 |
|
21 | 18 | import versioneer
|
22 | 19 |
|
|
38 | 35 | '*.tests', '*.tests.*')
|
39 | 36 | ),
|
40 | 37 | install_requires=[
|
41 |
| - 'gevent>=1.3.0', 'ssh2-python>=0.22.0', 'ssh-python>=0.9.0'], |
| 38 | + 'gevent>=1.3.0', 'ssh2-python', 'ssh-python'], |
42 | 39 | classifiers=[
|
43 | 40 | 'Development Status :: 5 - Production/Stable',
|
44 | 41 | 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
|
45 | 42 | 'Intended Audience :: Developers',
|
46 | 43 | 'Operating System :: OS Independent',
|
47 | 44 | 'Programming Language :: Python',
|
48 | 45 | 'Programming Language :: Python :: 3',
|
49 |
| - 'Programming Language :: Python :: 3.4', |
50 |
| - 'Programming Language :: Python :: 3.5', |
51 | 46 | 'Programming Language :: Python :: 3.6',
|
52 | 47 | 'Programming Language :: Python :: 3.7',
|
53 | 48 | 'Programming Language :: Python :: 3.8',
|
54 | 49 | 'Programming Language :: Python :: 3.9',
|
| 50 | + 'Programming Language :: Python :: 3.10', |
55 | 51 | 'Topic :: System :: Networking',
|
56 | 52 | 'Topic :: Software Development :: Libraries',
|
57 | 53 | 'Topic :: Software Development :: Libraries :: Python Modules',
|
|
60 | 56 | 'Operating System :: Microsoft :: Windows',
|
61 | 57 | 'Operating System :: MacOS :: MacOS X',
|
62 | 58 | ],
|
63 |
| -) |
| 59 | + ) |
0 commit comments