diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2ec37e5 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="qiskit_quantum_knn", + version="0.0.1", + author="Daniƫl J. Kok", + author_email="djonatankok@gmail.com", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/GroenteLepel/qiskit-quantum-knn", + packages=setuptools.find_packages(), + classifiers=[ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: Apache Software License", + "Operating System :: Unix", + "Programming Language :: Python :: 3.8", + "Topic :: Scientific/Engineering :: Physics", + ], + python_requires='>=3.6' +)