-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
29 lines (27 loc) · 802 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
from setuptools import setup, find_packages
with open("./README.md", "r") as fh:
long_description = fh.read()
setup(
name="vaspvis",
version="1.2.17",
description="A highly flexible and customizable library for visualizing electronic structure data from VASP calculations",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"pyprocar==5.6.6",
"scipy==1.10.1",
"pymatgen",
"matplotlib",
"numpy",
"pandas",
"ase",
"pychemia",
"fastdtw",
"scikit-learn",
],
url="https://github.com/DerekDardzinski/vaspvis",
author="Derek Dardzinski",
author_email="[email protected]",
license="MIT",
)