forked from amilsted/evoMPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 979 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function
from numpy.distutils.core import setup
from evoMPS.version import __version__
setup(name='evoMPS',
version=__version__,
description='Python scripts for simulating time evolution of matrix product states',
author='Ashley Milsted',
url='https://github.com/amilsted/evoMPS',
license="BSD",
classifiers=[
'Environment :: Console',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
packages = ['evoMPS'],
requires = ["scipy (>=0.7)"]
)