Skip to content
This repository has been archived by the owner on Jan 31, 2022. It is now read-only.

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
krakozaure authored Jul 15, 2018
1 parent 37330c9 commit 85d18a3
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions setup.py
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"
],
},
)

0 comments on commit 85d18a3

Please sign in to comment.