gitignore for egg-info and fix on the requirements.txt building error

This commit is contained in:
Ruben Sanchez 2023-11-14 10:47:16 -05:00
parent 22417e49d2
commit b10170e9b0
3 changed files with 7 additions and 2 deletions

2
.gitignore vendored
View File

@ -9,4 +9,4 @@
**/hub/logs/
**/__pycache__/
**/.idea/
./dist

3
cerc_persistence.egg-info/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Except this file
*
!.gitignore

View File

@ -35,5 +35,7 @@ setup(
],
setup_requires=install_requires,
install_requires=install_requires,
data_files=[],
data_files=[
('cerc_persistence', glob.glob('requirements.txt')),
],
)