-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 694 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 694 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
from setuptools import setup
#name1 = 'sspredict_local.plot = sspredict.plot_ss_ternary:main'
name1 = 'sspredict.predict = sspredict.master:main'
setup(
name='SSPredict',
version='v1.1.0',
license ='MIT',
author='Dongsheng Wen, Michael S. Titus',
author_email='wen94@purdue.edu, titus9@purdue.edu',
description='Python-based Solid-Solution Strengthening Prediction Tool',
packages = ['sspredict','sspredict/make_prediction'],
entry_points={
'console_scripts': [name1]
},
platforms='any',
install_requires=[
'numpy >= 1.13.3',
'matplotlib >= 2.1.0',
'pandas >= 0.23.4',
'python-ternary >= 1.0.8',
'scipy >= 1.5.1']
)