forked from deepmodeling/dpdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (56 loc) · 1.99 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
# -*- coding: utf-8 -*-
from os import path
import setuptools
readme_file = path.join(path.dirname(path.abspath(__file__)), 'README.md')
try:
from m2r import parse_from_file
readme = parse_from_file(readme_file)
except ImportError:
with open(readme_file) as f:
readme = f.read()
# install_requires = ['xml']
install_requires=['numpy>=1.14.3', 'monty', 'scipy', 'h5py', 'wcmatch', 'importlib_metadata>=1.4; python_version < "3.8"']
setuptools.setup(
name="dpdata",
use_scm_version={'write_to': 'dpdata/_version.py'},
setup_requires=['setuptools_scm'],
author="Han Wang",
author_email="[email protected]",
description="Manipulating data formats of DeePMD-kit, VASP, QE, PWmat, and LAMMPS, etc.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/deepmodeling/dpdata",
packages=['dpdata',
'dpdata/vasp',
'dpdata/lammps',
'dpdata/md',
'dpdata/deepmd',
'dpdata/qe',
'dpdata/siesta',
'dpdata/gaussian',
'dpdata/cp2k',
'dpdata/xyz',
'dpdata/pwmat',
'dpdata/amber',
'dpdata/fhi_aims',
'dpdata/gromacs',
'dpdata/abacus',
'dpdata/rdkit',
'dpdata/plugins',
'dpdata/pymatgen',
],
package_data={'dpdata':['*.json']},
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
],
keywords='lammps vasp deepmd-kit',
install_requires=install_requires,
extras_require={
'ase': ['ase'],
'amber': ['parmed'],
'pymatgen': ['pymatgen'],
'docs': ['sphinx', 'recommonmark', 'sphinx_rtd_theme>=1.0.0rc1', 'numpydoc', 'm2r2', 'deepmodeling-sphinx', 'sphinx-argparse'],
},
entry_points={"console_scripts": ["dpdata = dpdata.cli:dpdata_cli"]},
)