Skip to content

Commit

Permalink
改成可安装
Browse files Browse the repository at this point in the history
  • Loading branch information
BoringCat committed Jul 14, 2022
1 parent d0a63d4 commit 25f61f5
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@

# python cache
*.pyc
__pycache__/
__pycache__/

# local release files
release/
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages

setup(
name="python-vaultwarden",
version="0.0.1",
author="BoringCat",
author_email="[email protected]",
description="Simple VaultWarden API for Python",
url="https://github.com/BoringCat/python-vaultwarden",
packages=["vaultwarden"],
package_dir={
"vaultwarden": "vaultwarden"
},

install_requires = [
'requests>=2.27.1',
'passlib>=1.7.4',
'hkdf>=0.0.3',
'pycrypto>=2.6.1',
],
python_requires='>=3, <3.10',
)
Empty file added vaultwarden/__init__.py
Empty file.
File renamed without changes.

0 comments on commit 25f61f5

Please sign in to comment.