From d2ac39b8923a2dfddfbc6636bf46dfbc6cca6caf Mon Sep 17 00:00:00 2001 From: Aditya Kumar Date: Fri, 25 Sep 2020 15:40:58 +0530 Subject: [PATCH] chore: Add package classifiers --- setup.cfg | 2 ++ setup.py | 12 +++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 515b117..e3aaf9a 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,16 @@ python_requires='>=3.6', install_requires=install_requires, url='https://github.com/adityaa30/cpcli', + download_url='https://github.com/adityaa30/cpcli/releases/tag/0.1', + keywords=['CLI', 'Competitive Programming'], zip_safe=False, - license='MIT License' + license='MIT License', + classifiers=[ + 'Topic :: Education', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], )