2222exec (open ('recirq/_version.py' ).read ())
2323assert __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
2631def _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