PBinCLI/setup.py

40 lines
1.1 KiB
Python
Raw Normal View History

2018-06-01 10:07:18 +00:00
#!/usr/bin/env python
from setuptools import setup
2019-05-31 12:44:14 +00:00
from pbincli.__init__ import __version__ as pbincli_version
2018-06-01 10:07:18 +00:00
2019-05-31 12:52:04 +00:00
with open("README.rst") as readme:
2018-06-01 10:07:18 +00:00
long_description = readme.read()
with open("requirements.txt") as f:
install_requires = f.read().split()
setup(
name='PBinCLI',
2019-05-31 12:44:14 +00:00
version=pbincli_version,
2018-06-01 10:07:18 +00:00
description='PrivateBin client for command line',
long_description=long_description,
2019-07-16 20:52:15 +00:00
long_description_content_type='text/x-rst',
2018-06-01 10:07:18 +00:00
author='R4SAS',
author_email='r4sas@i2pmail.org',
url='https://github.com/r4sas/PBinCLI',
2019-05-31 12:44:14 +00:00
keywords='privatebin cryptography security',
2019-05-31 12:00:28 +00:00
license='MIT',
2018-06-01 10:07:18 +00:00
classifiers=[
2019-05-31 12:44:14 +00:00
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
2019-06-22 21:13:58 +00:00
'Intended Audience :: End Users/Desktop',
2019-05-31 12:00:28 +00:00
'License :: OSI Approved :: MIT License',
2018-06-01 10:07:18 +00:00
'Programming Language :: Python :: 3',
2019-05-31 12:44:14 +00:00
'Topic :: Security :: Cryptography',
'Topic :: Utilities',
2018-06-01 10:07:18 +00:00
],
packages=['pbincli'],
install_requires=install_requires,
entry_points={
'console_scripts': [
'pbincli=pbincli.cli:main',
],
}
)