forked from equs-python/two-qubit-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (20 loc) · 619 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (20 loc) · 619 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
"""
Setup script for the two_qubit_simulator module
"""
from __future__ import print_function
from setuptools import setup, find_packages
def main():
setup(
name='two_qubit_simulator',
version='0.0',
packages=find_packages(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=['numpy', 'pytest', 'pylint', 'scipy'],
author='Python@EQUS',
author_email='python@equs.org',
description='A simple module to simulate one and two qubit circuits',
keywords='quantum'
)
if __name__ == '__main__':
main()