-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
51 lines (48 loc) · 1.39 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
from setuptools import setup, find_packages
from pathlib import Path
with open(Path(__file__).parent / "cij" / "version.py") as fp: exec(fp.read())
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='cij',
version=__version__,
description='High temperature thermal elasticity',
long_description=long_description,
long_description_content_type='text/markdown',
author='Chenxing Luo',
author_email='chenxing.luo@columbia.edu',
url='https://github.com/MineralsCloud/cij/',
packages=find_packages(),
install_requires=[
"numpy >= 1.10.0",
"pandas",
"scipy",
"qha",
"lazy_property",
"pint >= 0.10",
"networkx",
"click",
"jsonschema",
"sympy"
],
package_data={
"cij.data": [
"schema/*.schema.json",
"output/writer_rules.yml",
"constraints/*",
"default/*"
]
},
entry_points = {
'console_scripts': [
'cij=cij.cli.cij:main',
'cij-run=cij.cli.main:main',
'cij-run-static=cij.cli.static:main',
'cij-extract=cij.cli.extract:main',
'cij-extract-geotherm=cij.cli.geotherm:main',
'cij-plot=cij.cli.plot:main',
'cij-modes=cij.cli.modes:main',
'cij-fill=cij.cli.fill:main',
],
}
)