File tree 5 files changed +5
-10
lines changed
5 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import io
16
15
import runpy
17
16
18
17
from setuptools import find_packages , setup
28
27
)
29
28
30
29
# README file as long_description.
31
- long_description = io . open ('README.md' , encoding = 'utf-8' ).read ()
30
+ long_description = open ('README.md' , encoding = 'utf-8' ).read ()
32
31
33
32
# Read in requirements
34
33
requirements = open ('requirements.txt' ).readlines ()
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import io
16
15
import runpy
17
16
18
17
from setuptools import find_packages , setup
29
28
)
30
29
31
30
# README file as long_description.
32
- long_description = io . open ('README.md' , encoding = 'utf-8' ).read ()
31
+ long_description = open ('README.md' , encoding = 'utf-8' ).read ()
33
32
34
33
# Read in requirements
35
34
requirements = open ('requirements.txt' ).readlines ()
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import io
16
15
import runpy
17
16
18
17
from setuptools import find_packages , setup
26
25
description = 'A Cirq package to simulate and connect to IonQ quantum computers'
27
26
28
27
# README file as long_description.
29
- long_description = io . open ('README.md' , encoding = 'utf-8' ).read ()
28
+ long_description = open ('README.md' , encoding = 'utf-8' ).read ()
30
29
31
30
# Read in requirements
32
31
requirements = open ('requirements.txt' ).readlines ()
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import io
16
15
import runpy
17
16
18
17
from setuptools import find_packages , setup
26
25
description = 'A Cirq package to simulate and connect to Pasqal quantum computers'
27
26
28
27
# README file as long_description.
29
- long_description = io . open ('README.md' , encoding = 'utf-8' ).read ()
28
+ long_description = open ('README.md' , encoding = 'utf-8' ).read ()
30
29
31
30
# Read in requirements
32
31
requirements = open ('requirements.txt' ).readlines ()
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import io
16
15
import runpy
17
16
18
17
from setuptools import find_packages , setup
26
25
description = 'A Cirq package to simulate and connect to Rigetti quantum computers and Quil QVM'
27
26
28
27
# README file as long_description.
29
- long_description = io . open ('README.md' , encoding = 'utf-8' ).read ()
28
+ long_description = open ('README.md' , encoding = 'utf-8' ).read ()
30
29
31
30
# Read in requirements
32
31
requirements = open ('requirements.txt' ).readlines ()
You can’t perform that action at this time.
0 commit comments