-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 841 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
exec(open("phayes/version.py").read())
setup(
name="phayes",
author="Sam Duffield",
author_email="sam.duffield@quantinuum.com",
url="https://github.com/SamDuffield/bayesian-phase-estimation",
description="Bayesian phase and amplitude estimation",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="Apache 2",
packages=find_packages(),
python_requires=">=3.8",
install_requires=["jax", "jaxlib", "tensorflow-probability"],
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
include_package_data=True,
platforms="any",
version=__version__,
)