forked from NITDgpOS/UIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
94 lines (62 loc) · 2.08 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
"""Module to perform build, package and install."""
import os
import json
from uiplib.utils.setupUtils import check_version, make_dir
check_version()
from setuptools import setup
from uiplib.settings import (HOME_DIR,
DEFAULT_PICS_FOLDER,
NUMBER_OF_IMAGES_TO_PARSE,
DEFAULT_FAVOURITE_PICS_FOLDER,
settings_file_path,
DEFAULT_SETTINGS)
def get_packages():
"""Method to retrieve packages to be bundled."""
base_dir = 'uiplib'
packages = [base_dir]
for (path, dirs, files) in os.walk(base_dir):
try:
dirs.remove('__pycache__')
except ValueError:
pass
if '__init__.py' in files:
packages.extend([os.path.join(path, dir) for dir in dirs])
return packages
def get_requirements(filename):
"""Method to get the requirements of the specified file."""
file = open(filename, 'r').readlines()
out = []
for a in file:
out.append(a.strip())
return out
if not os.path.exists(HOME_DIR):
make_dir(HOME_DIR)
if not os.path.exists(DEFAULT_PICS_FOLDER):
make_dir(DEFAULT_PICS_FOLDER)
if not os.path.exists(DEFAULT_FAVOURITE_PICS_FOLDER):
make_dir(DEFAULT_FAVOURITE_PICS_FOLDER)
if not os.path.isfile(settings_file_path):
file_data = DEFAULT_SETTINGS
with open(settings_file_path, "w") as settings_file:
settings_file.write(json.dumps(file_data, indent=4, sort_keys=True))
requirements = get_requirements('requirements.txt')
setup(
name="UIP",
version="0.0.3",
author="uip-dev",
author_email="[email protected]",
packages=get_packages(),
#license:
license="LICENSE",
#url:
url="https://www.github.com/NIT-dgp/UIP",
description="A library to get new wallpapers.",
long_description=open("README.md").read(),
install_requires=requirements,
scripts=[
"UIP"
],
entry_points={
"console_scripts": [
"UIP = uiplib.UIP:main"]}
)