File tree Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Original file line number Diff line number Diff line change 1
-
2
1
from setuptools import setup
3
2
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
-
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
+
10
+ license = 'MIT' ,
11
+ packages = ["classifier" ],
12
+ entry_points = """
13
+ [console_scripts]
14
+ classifier = classifier.classifier:main
15
+ """ ,
16
16
install_requires = [
17
17
'arrow' ,
18
18
],
19
- zip_safe = False )
19
+ zip_safe = False
20
+ )
You can’t perform that action at this time.
0 commit comments