-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
36 lines (34 loc) · 926 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
# coding: utf-8
from setuptools import setup
from hdnnpy import __version__
setup(
name='hdnnpy',
version=__version__,
description='High Dimensional Neural Network Potential package',
long_description=open('README.md').read(),
author='Masayoshi Ogura',
author_email='[email protected]',
url='https://github.com/ogura-edu/HDNNP',
license='MIT',
packages=[
'hdnnpy',
'hdnnpy.cli',
'hdnnpy.dataset',
'hdnnpy.dataset.descriptor',
'hdnnpy.dataset.property',
'hdnnpy.format',
'hdnnpy.model',
'hdnnpy.preprocess',
'hdnnpy.training',
'hdnnpy.training.loss_function',
],
scripts=[
'scripts/merge_xyz',
'scripts/outcar2xyz',
'scripts/poscars2xyz',
],
entry_points={
'console_scripts': ['hdnnpy = hdnnpy.cli:main'],
},
zip_safe=False,
)