forked from iglpdc/dmrg101
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 926 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
31
#!/usr/bin/env python
from distutils.core import setup
from version import __version__
setup(name='dmrg101',
version=__version__,
description='Pedagogical implementation of the DMRG algorithm',
long_description=open('README.md').read(),
author='Ivan Gonzalez',
author_email='[email protected]',
url='https://github.com/iglpdc/dmrg101',
license='MIT',
classifiers=[
'Enviroment :: Console',
'Development Status :: 0 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT license',
'Natural language :: English',
'Programming Language:: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
packages = ['dmrg101', 'dmrg101.core',
'dmrg101.utils',
'dmrg101.utils.tridiagonal_solver',
'dmrg101.utils.models'],
py_modules = ['version'],
requires = [],
)