Skip to content

Commit f428667

Browse files
committed
remove comments NITDgpOS#2
1 parent cbe6eb1 commit f428667

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

setup.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from uiplib.utils.setupUtils import check_version, make_dir
77
check_version()
8-
# Proceed only if the version is greater else exits
8+
99

1010
from setuptools import setup
1111
from 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+
4242
if not os.path.exists(HOME_DIR):
4343
make_dir(HOME_DIR)
4444

@@ -57,35 +57,35 @@ def get_requirements(filename):
5757
requirements = get_requirements('requirements.txt')
5858

5959
setup(
60-
# Name of application:
60+
6161
name="UIP",
6262

6363
version="0.0.3",
6464

65-
# author details:
65+
6666
author="uip-dev",
6767
author_email="[email protected]",
6868

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"]}

0 commit comments

Comments
 (0)