forked from fizikaislove/QCreator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (37 loc) · 1.29 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
from setuptools import setup, find_packages
import docs.version
def readme():
with open('README.md') as f:
return f.read()
def license():
with open('LICENSE') as f:
return f.read()
setup(name='qcreator',
version=docs.version.__version__,
author='Ivan Tsitsiln, Ilia Besedin',
author_email='[email protected]',
maintainer='Ilia Besedin',
maintainer_email='[email protected]',
description='Python based framework for superconducting qubits designing '
'developed by members of the supercoducting metamaterials laboratory at '
'NUST MISIS',
long_description=readme(),
url='https://github.com/ooovector/QCreator',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering'
],
license=license(),
# if we want to install without tests:
packages=find_packages(exclude=["*.tests", "tests"]),
#packages=find_packages(),
install_requires=[
'numpy>=1.10',
'IPython>=4.0',
'lmfit>=0.9.5',
'scipy>=0.17',
]
)