Skip to content

Commit

Permalink
Add pip stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pastor-robert committed Dec 8, 2024
1 parent 529fcd5 commit 5bb3aaa
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
Empty file added ffgrep/__init__.py
Empty file.
File renamed without changes.
Empty file added requirements.txt
Empty file.
33 changes: 33 additions & 0 deletions setup.py
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
)

0 comments on commit 5bb3aaa

Please sign in to comment.