-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 868 Bytes
/
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
from setuptools import find_packages, setup
with open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='ident',
version='1.0.3',
description='Identify with challenge messsage and SSH key.',
long_description=long_description,
# long_description_content_type='text/markdown',
url='https://github.com/mindey/ident',
author='Mindey',
author_email='[email protected]',
license='MIT',
packages = find_packages(exclude=['docs', 'tests*']),
install_requires=[
'cryptography==37.0.4', # because later versions require rust
],
extras_require = {
'test': ['coverage', 'pytest', 'pytest-cov'],
},
zip_safe=False,
entry_points = {
'console_scripts': [
'ident=ident.cli:verify',
'verify=ident.commands.verify:main'
],
}
)