setup.py 715 B

123456789101112131415161718192021222324
  1. import setuptools
  2. with open("README.rst", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="qcgpu",
  6. version="0.0.1",
  7. author="Adam Kelly",
  8. author_email="adamkelly2201@gmail.com",
  9. description="An OpenCL based quantum computer simulator",
  10. long_description=long_description,
  11. long_description_content_type="text/rst",
  12. url="https://github.com/qcgpu/qcgpu",
  13. packages=setuptools.find_packages(),
  14. classifiers=[
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: OS Independent",
  18. ],
  19. setup_requires=['pytest-runner', 'pyopencl', 'pybind11', 'numpy'],
  20. tests_require=["pytest"]
  21. )