Browse Source

Wrote Setup Information

Adam Kelly 5 years ago
parent
commit
5804b8e9b9
1 changed files with 26 additions and 3 deletions
  1. 26 3
      setup.py

+ 26 - 3
setup.py

@@ -1,7 +1,30 @@
 from skbuild import setup
 
+with open("README.md", "r") as fh:
+    long_description = fh.read()
+
 setup(
-    name='tangle',
-    version='0.2.0',
-    packages=['tangle']
+    name="tangle",
+    version="1.0.0",
+    author="Adam Kelly",
+    author_email="adamkelly2201@gmail.com",
+    description="High Performance Tools for Quantum Computation",
+    long_description=long_description,
+    long_description_content_type="text/markdown",
+    url="https://libtangle.com",
+    packages=['tangle'],
+    classifiers=[
+        "Environment :: Console",
+        "License :: OSI Approved :: MIT License",
+        "Intended Audience :: Developers",
+        "Intended Audience :: Science/Research",
+        "Operating System :: Microsoft :: Windows",
+        "Operating System :: MacOS",
+        "Operating System :: POSIX :: Linux",
+        "Programming Language :: C++",
+        "Programming Language :: Python :: 3.5",
+        "Programming Language :: Python :: 3.6",
+        "Topic :: Scientific/Engineering",
+    ],
+    install_requires=['scikit-build']
 )