-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 798 Bytes
/
setup.py
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
# @copyright: 2020 by Pauli Rikula
# @license: MIT <http://www.opensource.org/licenses/mit-license.php>
from setuptools import setup
import pytorchqbit
with open('README.md', 'r') as readme_file:
README = readme_file.read()
setup(
name='pytorchqbit',
version='0.0.1',
description='Quantum bit and the usual gates in torch tensors straight from the Wikipedia',
long_description=README,
license="MIT",
author="Pauli Rikula",
url='https://github.com/kummahiih/pytorchqbit',
long_description_content_type="text/markdown",
packages=['pytorchqbit'],
python_requires='~=3.10',
install_requires=[
'torch>=2.0.0'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6']
)