Skip to content

Commit

Permalink
chore: mention 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 a68edd9 commit c6ea6b4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

install_requires = [
'lxml>=4.5.0',
Expand All @@ -7,17 +7,19 @@

setup(
name='cpcli',
version='0.4',
version='0.5',
description='Competitive Programming CLI',
author='Aditya Kumar',
author_email='k.aditya00@gmail.com',
long_description=open('README.rst', 'r', encoding='utf-8').read(),
package_dir={'': 'src'},
entry_points={'console_scripts': ['cpcli=cpcli.cmdline:execute']},
packages=['cpcli'],
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.2',
download_url='https://github.com/adityaa30/cpcli/releases/tag/0.5',
keywords=['CLI', 'Competitive Programming'],
zip_safe=False,
license='MIT License',
Expand Down

0 comments on commit c6ea6b4

Please sign in to comment.