-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (41 loc) · 1.75 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import os
from setuptools import setup, find_packages
# pylint: disable=redefined-builtin
here = os.path.abspath(os.path.dirname(__file__)) # pylint: disable=invalid-name
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fid:
long_description = fid.read().strip() # pylint: disable=invalid-name
setup(
name='spurplus',
version='2.3.5', # Do not forget to update the changelog!
description='Manage remote machines and file operations over SSH.',
long_description=long_description,
url='http://github.com/Parquery/spurplus',
author='Marko Ristin',
author_email='[email protected]',
# yapf: disable
classifiers=[
'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
# yapf: enable
license='License :: OSI Approved :: MIT License',
keywords='ssh sftp spur paramiko execute remote commands modify files',
packages=find_packages(exclude=['tests']),
install_requires=['spur==0.3.23', 'typing_extensions>=3.6.2.1', 'icontract>=2.0.1,<3', 'temppathlib>=1.0.3,<2'],
extras_require={
'dev':
['mypy==0.790', 'pylint==2.6.0', 'yapf==0.20.2', 'tox>=3.0.0', 'coverage>=4.5.1,<5', 'pydocstyle>=2.1.1,<3']
},
py_modules=['spurplus', 'spurplus.sftp'],
include_package_data=True,
package_data={
"spurplus": ["py.typed"],
'': ['LICENSE.txt', 'README.rst']
})