-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 770 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 770 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
from cx_Freeze import setup, Executable, finder
import sys
base=None
if sys.platform == "win32":
base="Win32GUI"
def read_requirements():
with open("requirements.txt") as f:
return f.read().splitlines()
setup(
name= "Passman",
version="1.0.2",
author= "Abubakar Alaya",
author_email = "ecode5814@gmail.com",
license="MIT",
include_package_data=True,
description="A Password manager to secure and encrypt your sensitive information and files",
executables=[Executable(
script="passman.py",
icon="assets/padlock.png",
copyright="E_code ltd",
base=base)],
options={"build_exe":{"packages":read_requirements(),
"include_files":["assets/", "database/database_table.json"]}}
)