-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix lib import * remove extra code * remove extra comment * Update demo
- Loading branch information
Showing
11 changed files
with
23 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
""" | ||
Just run: | ||
python3 main.py | ||
""" | ||
|
||
from src.vault import * | ||
|
||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
|
||
try: | ||
import pypandoc | ||
|
@@ -8,18 +8,18 @@ | |
|
||
setup ( | ||
name = 'pyvault', | ||
version = '1.3b', | ||
version = '1.4', | ||
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'], | ||
packages = find_packages(), | ||
install_requires = ['pycryptodome', 'pyperclip', 'tabulate', 'argparse'], # external dependencies | ||
entry_points = { | ||
'console_scripts': [ | ||
'vault = vault.vault:main', | ||
'vault = src.vault:main', | ||
], | ||
}, | ||
) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters