1
1
mirror of https://github.com/r4sas/PBinCLI synced 2025-01-08 22:08:00 +00:00
PBinCLI/setup.py
r4sas 5909e7330b
validate config file for empty lines (closes #24)
Signed-off-by: r4sas <r4sas@i2pmail.org>
2020-06-22 11:22:21 +00:00

45 lines
1.3 KiB
Python

#!/usr/bin/env python
from setuptools import setup
from pbincli.__init__ import __version__ as pbincli_version
with open("README.rst") as readme:
long_description = readme.read()
with open("requirements.txt") as f:
install_requires = f.read().split()
setup(
name='PBinCLI',
version=pbincli_version,
description='PrivateBin client for command line',
long_description=long_description,
long_description_content_type='text/x-rst',
author='R4SAS',
author_email='r4sas@i2pmail.org',
url='https://github.com/r4sas/PBinCLI/',
keywords='privatebin cryptography security',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
'Topic :: Utilities',
],
packages=['pbincli'],
install_requires=install_requires,
python_requires='>=3',
entry_points={
'console_scripts': [
'pbincli=pbincli.cli:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/r4sas/PBinCLI/issues',
'Source': 'https://github.com/r4sas/PBinCLI/',
},
)