File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 55
66from uiplib .utils .setupUtils import check_version , make_dir
77check_version ()
8- # Proceed only if the version is greater else exits
8+
99
1010from setuptools import setup
1111from uiplib .settings import (HOME_DIR ,
@@ -38,7 +38,7 @@ def get_requirements(filename):
3838 out .append (a .strip ())
3939 return out
4040
41- # Make Home Directory
41+
4242if not os .path .exists (HOME_DIR ):
4343 make_dir (HOME_DIR )
4444
@@ -57,35 +57,35 @@ def get_requirements(filename):
5757requirements = get_requirements ('requirements.txt' )
5858
5959setup (
60- # Name of application:
60+
6161 name = "UIP" ,
6262
6363 version = "0.0.3" ,
6464
65- # author details:
65+
6666 author = "uip-dev" ,
67676868
69- # packages:
69+
7070 packages = get_packages (),
71-
71+ #license:
7272 license = "LICENSE" ,
73-
73+ #url:
7474 url = "https://www.github.com/NIT-dgp/UIP" ,
7575
76- # description
76+
7777 description = "A library to get new wallpapers." ,
7878 long_description = open ("README.md" ).read (),
7979
80- # dependencies
80+
8181 install_requires = requirements ,
8282
83- # scripts to be run
83+
8484 scripts = [
8585 "UIP"
8686 ],
8787
88- # binaries that can be called from anywhere
88+
8989 entry_points = {
9090 "console_scripts" : [
9191 "UIP = uiplib.UIP:main" ]}
You can’t perform that action at this time.
0 commit comments