setup.py 980 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.1.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. package_dir={'tangle': 'python'},
  15. classifiers=[
  16. "Environment :: Console",
  17. "License :: OSI Approved :: MIT License",
  18. "Intended Audience :: Developers",
  19. "Intended Audience :: Science/Research",
  20. "Operating System :: Microsoft :: Windows",
  21. "Operating System :: MacOS",
  22. "Operating System :: POSIX :: Linux",
  23. "Programming Language :: C++",
  24. "Programming Language :: Python :: 3.5",
  25. "Programming Language :: Python :: 3.6",
  26. "Topic :: Scientific/Engineering",
  27. ]
  28. )