Skip to content

Commit

Permalink
add long description for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
antonipy committed Dec 16, 2021
1 parent cb52d98 commit 7efd743
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
from distutils.core import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'slapr',
packages = ['slapr'],
version = '0.1',
version = '1.0',
license='gpl-3.0',
description = 'A simple tool that allows you to change your default AWS CLI profile.',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Antoni Yanev',
author_email = 'antonipyanev@gmail.com',
url = 'https://github.com/antonipy/slapr',
download_url = 'https://github.com/antonipy/slapr/archive/refs/tags/0.1.tar.gz',
download_url = 'https://github.com/antonipy/slapr/archive/refs/tags/1.0.tar.gz',
keywords = ['aws', 'awscli', 'awscliv2', 'linux', 'tools'],
install_requires=[
'inquirer',
Expand All @@ -22,7 +28,7 @@
'Topic :: Internet',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
'License :: OSI Approved :: GPL-3.0 License',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit 7efd743

Please sign in to comment.