-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 811 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 811 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 find_packages, setup
exec(open("qujax/version.py").read())
setup(
name="qujax",
author="Sam Duffield",
author_email="sam.duffield@quantinuum.com",
url="https://github.com/CQCL/qujax",
description="Simulating quantum circuits with JAX",
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>=0.4.1", "jaxlib", "typing_extensions"],
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
include_package_data=True,
platforms="any",
version=__version__,
)