-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
30 lines (27 loc) · 1011 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
29
30
from distutils.core import setup
if __name__ == '__main__':
setup(
name='QCircuits',
version='0.6.0',
author='Andrew M. Webb',
author_email='[email protected]',
packages=['qcircuits'],
url='http://www.awebb.info/qcircuits/index.html',
license='MIT License',
description='A package for simulating small-scale quantum computing',
long_description=open('README.rst').read(),
python_requires='>=3.5.3',
install_requires=[
"numpy >= 1.11.3",
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)