forked from scut-ccmp/sagar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.15 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
from setuptools import setup, find_packages
setup(
name='sagar',
# Remenber change version in ababe.cmdline.runabalib.exec_from_cmdline()
version='0.1.0',
description='A grid structure machine learning tool used\
in material science.',
author='Jason Yu',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
package_data={},
install_requires=["nose2", "numpy", "spglib==1.9.9.18",
"click>=6", "colorama", "ase==3.16"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 2.7",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"License :: MIT License",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English"],
scripts=[],
entry_points={
'console_scripts': [
'rexpand = sagar.cmd.rexpand:cli',
],
}
)