-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 875 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
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
"""
This is a setup.py script to install ShakeNBreak
"""
import os
import warnings
from distutils.cmd import Command
from distutils.command import install_headers
from setuptools import find_packages, setup
path_to_file = os.path.dirname(os.path.abspath(__file__))
setup(
name="compchem_toolkit",
long_description_content_type="text/markdown",
author="Irea Mosquera-Lois",
readme="README.md", # PyPI readme
license="MIT",
license_files=("LICENSE",),
packages=find_packages(),
install_requires=[
"numpy", # Requirement of hiphive
"pymatgen",
"matplotlib",
"ase",
"pandas",
"seaborn",
"monty",
"click",
"maml",
],
entry_points={
"console_scripts": [
"analyse-procar = cli.procar:analyse_procar",
],
},
)