-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
40 lines (34 loc) · 1.02 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
import glob
from setuptools import setup
def findfiles(pat):
return [x for x in glob.glob('share/' + pat)]
data_files = [
]
with open("README.md", "r") as fh:
long_description = fh.read()
# print "data_files = %s" % data_files
setup(
name='pyqsp',
version='0.1.6',
author='I. Chuang, J. Docter, J.M. Martyn, Z. Rossi, A. Tan',
author_email='[email protected]',
packages=['pyqsp', 'pyqsp.test', 'pyqsp.qsp_models'],
scripts=[],
url='https://github.com/ichuang/pyqsp',
license='LICENSE.txt',
description='Generate phase angles for quantum signal processing algorithms',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
entry_points={
'console_scripts': [
'pyqsp = pyqsp.main:CommandLine',
],
},
install_requires=['matplotlib',
'numpy>1.19.1',
'scipy',
],
package_dir={'pyqsp': 'pyqsp'},
test_suite="pyqsp.test",
)