-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
47 lines (45 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(
name='pyvault',
version='2.4.5',
description='Python password manager',
long_description=long_description,
author='Gabriel Bordeaux',
author_email='[email protected]',
url='https://github.com/gabfl/vault',
license='MIT',
packages=['vault', 'vault.lib', 'vault.models',
'vault.modules', 'vault.views'],
package_dir={'vault': 'src'},
install_requires=[
'pycryptodome==3.20.0',
'pyperclip',
'tabulate',
'passwordgenerator',
'SQLAlchemy==1.4.41',
'sqlcipher3==0.5.3'
], # external dependencies
entry_points={
'console_scripts': [
'vault = vault.vault:main',
],
},
classifiers=[ # see https://pypi.org/pypi?%3Aaction=list_classifiers
'Topic :: Security',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
# 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
],
)