-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.cfg
71 lines (63 loc) · 2.14 KB
/
setup.cfg
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[bdist_wheel]
# wheels should be OS-specific:
# their names must contain macOS/manulinux1/2010/2014/Windows identifiers
universal = 0
[metadata]
name = ansible-pylibssh
url = https://github.com/ansible/pylibssh
project_urls =
Bug Tracker = https://github.com/ansible/pylibssh/issues
CI: GitHub Workflows = https://github.com/ansible/pylibssh/actions?query=branch:devel
Code of Conduct = https://docs.ansible.com/ansible/latest/community/code_of_conduct.html
Docs: RTD = https://ansible-pylibssh.rtfd.io/
Source Code = https://github.com/ansible/pylibssh
description = Python bindings for libssh client specific to Ansible use case
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Ansible, Inc.
author_email = info+github/ansible/pylibssh@ansible.com
license = LGPLv2+
license_files =
LICENSE.rst
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Operating System :: MacOS
Operating System :: POSIX :: Linux
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Cython
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Security
keywords =
cython
cext
libssh
[options]
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
# Ref:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#using-a-src-layout
# (`src/` layout)
package_dir =
= src
packages = find:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#setting-the-zip-safe-flag
zip_safe = False
include_package_data = True
[options.packages.find]
# Ref:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#using-a-src-layout
# (`src/` layout)
where = src
[options.package_data]
# Ref:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#options
# (see notes for the asterisk/`*` meaning)
* =
# *.c
*.so