-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 799 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.md', encoding='UTF-8') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='taichi_q',
version='0.0.10',
description='Taichi-Q: A quantum circuit simulator for both CPU and GPU',
long_description=readme,
long_description_content_type='text/markdown',
keywords="quantum computation simulator",
author='Haotian Hong',
author_email='bughht@outlook.com',
install_requires=['numpy', 'taichi==1.2.2',
'matplotlib', 'scipy'],
python_requires='>3.6',
url='https://github.com/bughht/Taichi-Q',
license='Apache License Version 2.0',
packages=find_packages(),
test_suite='tests'
)
print(find_packages())