Skip to content

Commit

Permalink
infra: Add details to setup.py
Browse files Browse the repository at this point in the history
So PyPi shows the relevant information
  • Loading branch information
speller26 committed Aug 13, 2020
1 parent ef10910 commit 5fdbac4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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("\"'")

Expand Down Expand Up @@ -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",
],
)

0 comments on commit 5fdbac4

Please sign in to comment.