forked from fermisurfaces/IFermi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (73 loc) · 2.23 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
""""
IFermi: Fermi surface plotting tool from DFT output files.
"""
from setuptools import find_packages, setup
from ifermi import __version__
with open("README.md", "r") as file:
long_description = file.read()
setup(
name="ifermi",
version=__version__,
description="Fermi surface plotting tool from DFT output",
url="https://github.com/fermisurfaces/IFermi",
author="Amy Searle",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering",
"Topic :: Other/Nonlisted Topic",
"Operating System :: OS Independent",
],
keywords="fermi-surface pymatgen dft vasp band materials-science",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"matplotlib",
"pymatgen>=2017.12.30",
"BoltzTraP2",
"trimesh",
"meshcut",
"scikit-image",
"monty",
"spglib",
"plotly",
"pyfftw",
"psutil",
"click",
"networkx",
"tabulate",
],
extras_require={
"mayavi": ["mayavi", "mlabtex", "vtk"],
"crystal-toolkit": ["crystal-toolkit"],
"plotly-static": ["kaleido"],
"decimation": ["open3d"],
"smooth": ["PyMCubes"],
"docs": [
"sphinx==3.2.1",
"sphinx-click==2.5.0",
"sphinx_rtd_theme==0.5.0",
"sphinx-autodoc-typehints==1.11.1",
"m2r2==0.2.5",
"nbsphinx",
"nbsphinx-link",
"ipython",
],
"dev": ["black"],
"tests": ["pytest"],
':python_version < "3.7"': ["dataclasses>=0.6"],
},
data_files=["LICENSE"],
entry_points={"console_scripts": ["ifermi = ifermi.cli:cli"]},
)