mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2025-12-06 03:22:23 -08:00
ignore gitignore files content
This commit is contained in:
parent
752ca966c4
commit
5c1c7d98e9
4 changed files with 47 additions and 6 deletions
7
setup.py
7
setup.py
|
|
@ -1,13 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
with open('requirements.txt') as f:
|
||||
required = f.read().splitlines()
|
||||
|
||||
setup(
|
||||
name='repo-to-text',
|
||||
version='0.1',
|
||||
packages=find_packages(),
|
||||
install_requires=[],
|
||||
install_requires=required,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'repo-to-text=repo_to_text.main:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue