Skip to content

Commit

Permalink
fix: include all packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
adityaa30 committed Aug 1, 2021
1 parent c6ea6b4 commit 3ccc987
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

setup(
name='cpcli',
version='0.5',
version='0.6',
description='Competitive Programming CLI',
author='Aditya Kumar',
author_email='[email protected]',
long_description=open('README.rst', 'r', encoding='utf-8').read(),
package_dir={'': 'src'},
packages=['cpcli'],
packages=find_packages(exclude=('tests', 'tests.*')),
entry_points={'console_scripts': ['cpcli = cpcli.cmdline:execute']},
python_requires='>=3.6',
install_requires=install_requires,
include_package_data=True,
url='https://github.com/adityaa30/cpcli',
download_url='https://github.com/adityaa30/cpcli/releases/tag/0.5',
download_url='https://github.com/adityaa30/cpcli/releases/tag/0.6',
keywords=['CLI', 'Competitive Programming'],
zip_safe=False,
license='MIT License',
Expand Down
File renamed without changes.

0 comments on commit 3ccc987

Please sign in to comment.