easywks/setup.py

27 lines
585 B
Python
Raw Normal View History

2021-09-26 08:40:02 +02:00
from setuptools import setup, find_packages
from easywks import __version__
setup(
name='easywks',
version=__version__,
author='s3lph',
author_email='account-gitlab-ideynizv@kernelpanic.lol',
description='OpenPGP WKS for Human Beings',
license='MIT',
keywords='pgp,wks',
url='https://gitlab.com/s3lph/easywks',
packages=find_packages(exclude=['*.test']),
install_requires=[
'bottle',
'PyYAML',
'PGPy',
],
entry_points={
'console_scripts': [
'easywks = easywks.main:main'
]
},
)