Skip to content

Commit 81468ff

Browse files
committed
updates setup.py to fix formatting
1 parent c940faf commit 81468ff

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

setup.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
21
from setuptools import setup
32

4-
setup(name="classifier",
5-
version="1.6",
6-
description="Classify the files in your Downloads folder into suitable destinations.",
7-
url="http://github.com/bhrigu123/classifier",
8-
author="Bhrigu Srivastava",
9-
author_email="[email protected]",
10-
license='MIT',
11-
packages=["classifier"],
12-
entry_points="""
13-
[console_scripts]
14-
classifier = classifier.classifier:main
15-
""",
3+
setup(
4+
name="classifier",
5+
version="1.6",
6+
description="Classify the files in your Downloads folder into suitable destinations.",
7+
url="http://github.com/bhrigu123/classifier",
8+
author="Bhrigu Srivastava",
9+
author_email="[email protected]",
10+
license='MIT',
11+
packages=["classifier"],
12+
entry_points="""
13+
[console_scripts]
14+
classifier = classifier.classifier:main
15+
""",
1616
install_requires=[
1717
'arrow',
1818
],
19-
zip_safe=False)
19+
zip_safe=False
20+
)

0 commit comments

Comments
 (0)