Skip to content

Commit

Permalink
First commit. Setup file for releasing.
Browse files Browse the repository at this point in the history
  • Loading branch information
GroenteLepel committed Oct 5, 2020
1 parent 9ff89bf commit b214406
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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'
)

0 comments on commit b214406

Please sign in to comment.