Skip to content

Commit

Permalink
Fixed setup.py and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanFMontesinos committed Jul 25, 2020
1 parent 6aca211 commit 1e766b7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ __pycache__/
*$py.class

# C extensions
skeleton_files_test.py
*.so
*.idea
# Distribution / packaging
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Solos/json_files/solos_ids.json
include Solos/json_files/solos_timestamps.json
include Solos/skeleton_files/skeleton_dict.json
2 changes: 1 addition & 1 deletion Solos/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1"
__version__ = "0.2"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Fire
youtube_dl
googledrivedownloader
googledrivedownloader
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
author='Juan Montesinos',
author_email='juanfelipe.montesinos@upf.edu',
packages=find_packages(),
install_requires=['Fire', 'youtube_dl', 'google_drive_downloader'],
install_requires=['Fire', 'youtube_dl', 'googledrivedownloader'],
package_data={'Solos': 'json_files/solos_ids.json'},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3", ],
zip_safe=False)

0 comments on commit 1e766b7

Please sign in to comment.