-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.1 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.1 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
from setuptools import setup, find_packages
setup(
name="quantum_field_kit",
version="1.0.0",
description="A quantum computing simulation toolkit for demonstrating quantum protocols and algorithms",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="ParleSec",
url="https://github.com/ParleSec/QuantumFieldKit",
packages=find_packages(),
install_requires=[
"cirq>=0.17.0",
"qiskit>=0.40.0",
"numpy>=1.21.0",
"matplotlib>=3.5.0",
"PyQt5>=5.15.0",
"qdarkstyle>=3.0.2",
"sympy>=1.8"
],
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Education",
"Topic :: Security :: Cryptography"
],
entry_points={
'console_scripts': [
'qfk-cli=ui.cli:main',
'qfk-gui=ui.gui:main',
],
},
python_requires='>=3.8',
)