-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve project structure for the sake of packaging
- Loading branch information
Showing
12 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
File renamed without changes.
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
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -27,21 +27,20 @@ | |
setup( | ||
name='packt', | ||
version=package_version, | ||
packages=find_packages(), | ||
license='MIT', | ||
description='Script for grabbing daily Packt Free Learning ebooks', | ||
author='Łukasz Uszko', | ||
author_email='[email protected]', | ||
url='https://github.com/luk6xff/Packt-Publishing-Free-Learning', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
package_dir={'': 'src'}, | ||
packages=find_packages('src'), | ||
py_modules=['packtPublishingFreeEbook', 'api', 'claimer', 'configuration', 'downloader'], | ||
py_modules=['packt'], | ||
install_requires=requirements, | ||
extras_require={'dev': dev_requirements}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'packt-cli = packtPublishingFreeEbook:packt_cli', | ||
'packt-cli = packt.packtPublishingFreeEbook:packt_cli', | ||
], | ||
}, | ||
download_url='https://github.com/luk6xff/Packt-Publishing-Free-Learning/archive/v1.5.3.tar.gz', | ||
|