-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 722 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 722 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
27
28
29
from setuptools import setup, find_packages
VERSION = "1.0.1"
DESCRIPTION = "Terminal password manager in Python"
LONG_DESCRIPTION = ""
with open("README.md", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="python-passman",
version=VERSION,
author="profility",
author_email="contact@profility.slmail.me",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url="https://github.com/profility/passman",
packages=find_packages(),
install_requires=[
"typer",
"python-gnupg"
],
entry_points = {
"console_scripts": [
"passman=passman.cli:app"
]
}
)