Skip to content

Commit d54f273

Browse files
committed
Update description & email address
The email address should be quantum-oss-maintainers@google.com. Also, the description was empty, so added one.
1 parent 81c75e3 commit d54f273

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
exec(open('recirq/_version.py').read())
2323
assert __version__, 'Version string cannot be empty'
2424

25+
description = (
26+
'A collection of Python modules that implement algorithms and experiments'
27+
'in quantum computing, written in and using Cirq. Research using Cirq!'
28+
)
29+
2530

2631
def _parse_requirements(path: pathlib.Path):
2732
lines = [line.strip() for line in path.read_text().splitlines() if line]
@@ -45,13 +50,14 @@ def _parse_requirements(path: pathlib.Path):
4550
version=__version__,
4651
url='http://github.com/quantumlib/recirq',
4752
author='Quantum AI team and collaborators',
48-
author_email='cirq@googlegroups.com',
49-
python_requires='>=3.6.0',
53+
maintainer_email="quantum-oss-maintainers@google.com",
54+
python_requires='>=3.10.0',
5055
install_requires=install_requires,
5156
extras_require=extras_require,
5257
license='Apache 2',
53-
description="",
58+
description=description,
5459
long_description=open('README.md', encoding='utf-8').read(),
60+
long_description_content_type='text/markdown',
5561
packages=find_packages(),
5662
package_data={'recirq': [
5763
# https://github.com/quantumlib/ReCirq/issues/101

0 commit comments

Comments
 (0)