This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 2.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from os import path
from setuptools import setup, find_namespace_packages
# Use READEME for long description.
root_dir = path.abspath( path.dirname( __file__ ) )
readme_path = path.join( root_dir, "README.md" )
with open( readme_path, encoding = "utf-8" ) as f:
long_description = f.read()
# use requirements.txt for requirements.
req_path = path.join( root_dir, "requirements.txt" )
with open( req_path ) as f:
requirements = f.read().split( '\n' )
if '' in requirements:
requirements.remove( '' )
setup( name = "qfast-uq",
version = "2.0.0",
description = "QFAST UniversalQ Compiler Plugin",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/BQSKit/qfast-uq",
author = "Ed Younis",
author_email = "[email protected]",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Other Scripting Engines",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Compilers"
],
keywords = "quantum synthesis compilation",
project_urls = {
"Bug Tracker": "https://github.com/BQSKit/qfast-uq/issues",
"Source Code": "https://github.com/BQSKit/qfast-uq"
},
packages = [ "qfast.instantiation.native" ],
install_requires = requirements,
python_requires = ">=3.5, <4",
package_data = { "qfast.native" : [ "QI.m", "UniversalQCompiler.m" ] },
zip_safe = False
)