Skip to content

Commit

Permalink
Optional install with qasm compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
gribeill committed Dec 15, 2020
1 parent 4ee684c commit 8ededb3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
@@ -1,5 +1,9 @@
from setuptools import setup, find_packages

extras = {
'with_qasm': ['sly >= 0.4']
}

setup(name='QGL',
version='2020.1',
packages=find_packages(exclude=["tests"]),
Expand All @@ -18,7 +22,8 @@
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
python_requires='>=3.6',
keywords="quantum qubit experiment configuration gate language"
keywords="quantum qubit experiment configuration gate language",
extras_requier=extras
)

# python setup.py sdist
Expand Down

0 comments on commit 8ededb3

Please sign in to comment.