forked from louisabraham/ffpass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (21 loc) · 738 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (21 loc) · 738 Bytes
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
#!/usr/bin/env python3
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="ffpass",
version="0.4.8",
author="Louis Abraham",
license="MIT",
author_email="louis.abraham@yahoo.fr",
description="Import and Export passwords for Firefox",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/louisabraham/ffpass",
packages=["ffpass"],
install_requires=["pyasn1", "pycryptodome"],
python_requires=">=3.6",
entry_points={"console_scripts": ["ffpass = ffpass:main"]},
classifiers=["Topic :: Utilities", "Topic :: Security :: Cryptography"],
)