easywks/setup.py

37 lines
759 B
Python
Raw Permalink 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='s3lph@kabelsalat.ch',
2021-09-26 08:40:02 +02:00
description='OpenPGP WKS for Human Beings',
license='MIT',
keywords='pgp,wks',
url='https://git.kabelsalat.ch/s3lph/easywks',
2021-09-26 08:40:02 +02:00
packages=find_packages(exclude=['*.test']),
install_requires=[
2021-09-26 17:11:05 +02:00
'aiosmtpd',
2021-09-26 08:40:02 +02:00
'bottle',
2023-04-04 20:15:46 +02:00
'dnspython',
2021-09-26 08:40:02 +02:00
'PyYAML',
'PGPy',
2023-04-04 20:15:46 +02:00
'Twisted',
2021-09-26 08:40:02 +02:00
],
extras_require={
'test': [
'coverage',
'pycodestyle',
'twine'
]
},
2021-09-26 08:40:02 +02:00
entry_points={
'console_scripts': [
'easywks = easywks.main:main'
]
},
)