Skip to content

Commit 1b2478e

Browse files
authored
infra: Add details to setup.py (#43)
So PyPi shows the relevant information
1 parent 46ba8ac commit 1b2478e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

setup.py

+20
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
from setuptools import find_namespace_packages, setup
1515

16+
with open("README.md", "r") as fh:
17+
long_description = fh.read()
18+
1619
with open("src/braket/default_simulator/_version.py") as f:
1720
version = f.readlines()[-1].split()[-1].strip("\"'")
1821

@@ -42,4 +45,21 @@
4245
"tox",
4346
]
4447
},
48+
url="https://github.com/aws/amazon-braket-default-simulator-python",
49+
author="Amazon Web Services",
50+
description=(
51+
"An open source quantum circuit simulator to be run locally with the Amazon Braket SDK"
52+
),
53+
long_description=long_description,
54+
long_description_content_type="text/markdown",
55+
keywords="Amazon AWS Quantum",
56+
classifiers=[
57+
"Development Status :: 5 - Production/Stable",
58+
"Intended Audience :: Developers",
59+
"Natural Language :: English",
60+
"License :: OSI Approved :: Apache Software License",
61+
"Programming Language :: Python",
62+
"Programming Language :: Python :: 3.7",
63+
"Programming Language :: Python :: 3.8",
64+
],
4565
)

0 commit comments

Comments
 (0)