-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (30 loc) · 1.17 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
"""
vasp-analysis: a "teach yourself python" tools made useful
"""
from os.path import abspath, dirname
from setuptools import setup, find_packages
project_dir = abspath(dirname(__file__))
setup(
name='asciimatplots',
version='1.0.0',
description='ascii plots for various aspects of materials dft',
url="https://github.com/badw/asciimatplots",
author="Benjamin A. D. Williamson",
author_email="[email protected]",
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics'
],
keywords='chemistry pymatgen physics dft vasp',
packages=find_packages(),
install_requires=['colorama','termplotlib', 'numpy', 'pymatgen','argparse'],
entry_points={'console_scripts': [
'ascii-converge = asciimatplots.converge_status:main',
'ascii-nebplot = asciimatplots.neb_barrier:main']},
)