From 5fdbac429b5f4cf70a2eeb2037906b413bd2ac9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=84=82=F0=9D=93=9E=F0=9D=94=87=F0=9D=9A=88?= Date: Thu, 13 Aug 2020 15:01:16 -0700 Subject: [PATCH] infra: Add details to setup.py So PyPi shows the relevant information --- setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/setup.py b/setup.py index 656150f3f..fe815724e 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,9 @@ from setuptools import find_namespace_packages, setup +with open("README.md", "r") as fh: + long_description = fh.read() + with open("src/braket/_sdk/_version.py") as f: version = f.readlines()[-1].split()[-1].strip("\"'") @@ -48,4 +51,21 @@ "tox", ] }, + url="https://github.com/aws/amazon-braket-sdk-python", + author="Amazon Web Services", + description=( + "An open source library for interacting with quantum computing devices on Amazon Braket" + ), + long_description=long_description, + long_description_content_type="text/markdown", + keywords="Amazon AWS Quantum", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Natural Language :: English", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + ], )