Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96106
License: OTHER
1
import setuptools
2
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
6
setuptools.setup(
7
name="vqe_playground_006",
8
version="0.0.1",
9
author="James L. Weaver",
10
author_email="[email protected]",
11
description="Variational Quantum Eigensolver Playground",
12
long_description=long_description,
13
long_description_content_type="text/markdown",
14
url="https://github.com/JavaFXpert/vqe-playground",
15
packages=setuptools.find_packages(),
16
install_requires=[
17
'pygame',
18
'networkx',
19
#'qiskit', # not including for now, because of hard scikit learn reqirement
20
#'qiskit_aqua',
21
],
22
package_data={
23
'vqe_playground.utils':
24
['**/*.png', 'data/images/*.png', 'data/gate_images/*.png'],
25
},
26
classifiers=[
27
"Programming Language :: Python :: 3",
28
"License :: OSI Approved :: Apache Software License",
29
"Operating System :: OS Independent",
30
],
31
entry_points={
32
'console_scripts': [
33
'vqe-playground = vqe_playground.command_line:main',
34
],
35
},
36
)
37
38