setup.py 981 B

123456789101112131415161718192021222324252627282930
  1. from skbuild import setup
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setup(
  5. name="tangle",
  6. version="1.0.0",
  7. author="Adam Kelly",
  8. author_email="adamkelly2201@gmail.com",
  9. description="High Performance Tools for Quantum Computation",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://libtangle.com",
  13. packages=['tangle'],
  14. classifiers=[
  15. "Environment :: Console",
  16. "License :: OSI Approved :: MIT License",
  17. "Intended Audience :: Developers",
  18. "Intended Audience :: Science/Research",
  19. "Operating System :: Microsoft :: Windows",
  20. "Operating System :: MacOS",
  21. "Operating System :: POSIX :: Linux",
  22. "Programming Language :: C++",
  23. "Programming Language :: Python :: 3.5",
  24. "Programming Language :: Python :: 3.6",
  25. "Topic :: Scientific/Engineering",
  26. ],
  27. install_requires=['scikit-build']
  28. )