forked from adrybakov/rad-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (41 loc) · 1.49 KB
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
41
42
43
44
45
from setuptools import find_packages, setup
from radtools import __version__
__version__ = __version__
with open("README.rst", "r") as file:
long_description = ""
for line in file:
long_description += line
setup(
name="rad-tools",
version=__version__,
description="Spin Hamiltonians, magnons and condense matter post-processing.",
long_description=long_description,
author="Andrey Rybakov",
author_email="rybakov.ad@icloud.com",
license="MIT license",
url="https://rad-tools.org/en/stable/",
download_url="https://github.com/adrybakov/rad-tools.git",
packages=find_packages(),
scripts=[
"scripts/rad-plot-tb2j.py",
"scripts/phonopy-plotter.py",
"scripts/rad-extract-tb2j.py",
"scripts/rad-make-template.py",
"scripts/rad-plot-dos.py",
"scripts/rad-plot-fatbands.py",
"scripts/rad-identify-wannier-centres.py",
"scripts/compute-energies.py",
"scripts/rad-plot-tb2j-magnons.py",
],
install_requires=["numpy", "matplotlib", "scipy", "tqdm", "termcolor"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
python_requires=">=3.8",
)