-
Notifications
You must be signed in to change notification settings - Fork 0
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
529fcd5
commit 5bb3aaa
Showing
4 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
File renamed without changes.
Empty file.
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,33 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('requirements.txt') as f: | ||
requirements = f.readlines() | ||
|
||
long_description = 'grep utility that searches only a subset of files' | ||
|
||
setup( | ||
name ='ffgrep', | ||
version ='0.1.0', | ||
author ='Rob Adams', | ||
author_email ='[email protected]', | ||
url ='https://github.com/pastor-robert/ffgrep', | ||
description ='grep for source code tree', | ||
long_description = long_description, | ||
long_description_content_type ="text/markdown", | ||
license ='Unlicense', | ||
packages = find_packages(), | ||
entry_points = { | ||
'console_scripts': [ | ||
'ffgrep = ffgrep.ffgrep:main' | ||
] | ||
}, | ||
classifiers =( | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: The Unlicense", | ||
"Operating System :: OS Independent", | ||
), | ||
keywords ='grep python package pastor-robert', | ||
install_requires = requirements, | ||
zip_safe = False | ||
) | ||
|