-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 1.12 KB
/
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
31
32
33
34
35
36
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='secret_vault',
version='1.1',
description='Python secret vault to encrypt and hide your files in a secure place.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Maneesh Pradeep',
author_email='maneesh.pradeep@protonmail.com',
url='https://github.com/Maneesh-Pradeep/secret_vault',
license='MIT',
py_modules=['secret_vault'],
install_requires=['cryptography', 'pyAesCrypt'],
entry_points={
'console_scripts': [
'secret_vault = secret_vault:main',
],
},
classifiers=[
'Topic :: Security',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
],
)