-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 924 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 924 Bytes
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
from setuptools import setup, find_packages
__version__ = "0.1"
setup(
name='xtalmdscripts',
author='Tobias Huefner',
author_email='thuefner@health.ucsd.edu',
description='A collection of scripts useful for the xtalmd project \
in the group of Mike Gilson at UC San Diego.',
version=__version__,
license='MIT',
platforms=['Linux'],
zip_safe=False,
packages=find_packages(),
entry_points={
'console_scripts': [
'make_supercell = xtalmdscripts.supercellbuilding.make_supercell:entry_point',
'make_tables = xtalmdscripts.analysis.make_tables:entry_point',
'build_system = xtalmdscripts.buildsystem.build_system:entry_point',
'run_xtal_min = xtalmdscripts.modelling.run_min:entry_point',
'run_xtal_md = xtalmdscripts.modelling.run_md:entry_point',
]
},
include_package_data=True
)