-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
39 lines (36 loc) · 1.25 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
from setuptools import setup
from codecs import open as codecs_open
from os import path
here = path.abspath(path.dirname(__file__))
with codecs_open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sshpubkeys',
version='3.3.1',
description='SSH public key parser',
long_description=long_description,
url='https://github.com/ojarva/python-sshpubkeys',
author='Olli Jarva',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Security',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: PyPy',
],
keywords='ssh pubkey public key openssh ssh-rsa ssh-dss ssh-ed25519',
packages=["sshpubkeys"],
test_suite="tests",
python_requires='>=3',
install_requires=['cryptography>=2.5'],
extras_require={
'dev': ['twine', 'wheel', 'yapf'],
},
)