-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
103 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ venv/ | |
*.bak | ||
__pycache__/ | ||
*.pyc | ||
*.egg-info | ||
build/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include LICENSE | ||
include file_sorter/categories.ini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
classifiers_list = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Plugins", | ||
"Operating System :: Ubuntu", | ||
"Programming Language :: Python 3.6.9", | ||
"Topic :: System", | ||
"Topic :: Utilities", | ||
{ | ||
"alpha": "Development Status :: 3 - Alpha", | ||
"beta": "Development Status :: 4 - Beta", | ||
"stable": "Development Status :: 5 - Production/Stable" | ||
}["alpha"] | ||
] | ||
|
||
README = os.path.join(os.path.dirname(__file__), "README.md") | ||
|
||
setup( | ||
name="file-sorter", | ||
version="0.1.0", | ||
description="File sorter is a simple tool for automation sorting your files by their extensions.", | ||
long_description=open(README).read(), | ||
author="Dobryakov David", | ||
author_email="[email protected]", | ||
url="https://github.com/kantegory/file_sorter", | ||
license="ISC", | ||
packages=['file_sorter'], | ||
entry_points={ | ||
"console_scripts": [ | ||
"file-sorter = file_sorter.file_sorter:main", | ||
"file-sorter-config = file_sorter.config:main", | ||
] | ||
}, | ||
classifiers=classifiers_list, | ||
include_package_data=True | ||
) |