forked from MCMartone/mat2qubit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.03 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.03 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import pathlib
from setuptools import find_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="mat2qubit", # Replace with your own username
version="0.0.1",
author="Nicolas P. D. Sawaya",
author_email="nicolas.sawaya@intel.com",
description="Package for encoding matrices into qubits.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/pypa/mat2qubit",
license="Apache 2",
# package_dir={'': 'src'},
packages=["mat2qubit"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: Apache 2",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=["sympy>=1.3", "scipy>=1.1", "openfermion>=1.0"],
extras_require={
"dev": [
"black~=22.3.0",
"flake8~=4.0.1",
"isort~=5.10.1",
]
},
)