This repository has been archived by the owner on Jan 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
37330c9
commit 85d18a3
Showing
1 changed file
with
40 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="fsscan", | ||
version="0.0.3", | ||
author="krakozaure", | ||
author_email="", | ||
description="Directory scanner", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/krakozaure/fsscan", | ||
packages=setuptools.find_packages(), | ||
install_requires=[ | ||
'scandir;python_version<"3.5"' | ||
], | ||
tests_require=[ | ||
"pytest" | ||
], | ||
classifiers=( | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Environment :: Console", | ||
"Topic :: System :: Filesystems", | ||
"Topic :: Terminals", | ||
"Topic :: Utilities", | ||
), | ||
entry_points={ | ||
"console_scripts": [ | ||
"fsscan=fsscan.__main__:main" | ||
], | ||
}, | ||
) |