-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 849 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
#!/usr/bin/env python
from setuptools import setup, find_packages
long_description = """minimulti is a python framework of effective potentials, including lattice model, electron (tight-binding+Hubbard), magnetic Heisenberg model, etc """
setup(
name='minimulti',
version='0.3.14',
description='Mini Extendable framework of multi Hamiltonian',
long_description=long_description,
author='Xu He',
author_email='[email protected]',
license='GPLv3',
packages=find_packages(),
package_data={},
install_requires=['numpy', 'scipy', 'matplotlib', 'ase', 'numba',
'tbmodels',
'netcdf4',
# 'ipyvolumn'
'jupyter',
],
scripts=[
],
classifiers=[
'Development Status :: 3 - Alpha',
])