-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1 KB
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
from setuptools import setup, find_packages
setup(
name='mapal',
version='1.0',
description='MAPping ALloys - A Python library for mapping features and properties of alloys over compositional spaces.',
url='https://sites.google.com/view/mapal-pylib',
author='Dishant Beniwal; Pratik K. Ray',
author_email='dishant.beniwal@gmail.com; ',
license='MIT',
keywords='mapal; mapping alloys; alloy features; multi-principal element alloys',
packages=find_packages(),
include_package_data=True,
package_data={
'mapal': ["element_data/mapal_EL1/*",
"preTrained_ML_mods/*",
"preTrained_ML_mods/M1-trained-model/*",
"preTrained_ML_mods/M1-trained-model/min_max_feat_values/*",
"preTrained_ML_mods/M1-trained-model/mod_files/*",
"preTrained_ML_mods/M2-trained-model/min_max_feat_values/*",
"preTrained_ML_mods/M2-trained-model/mod_files/*"]
},
install_requires=[
'numpy',
'pandas',
'tensorflow',
'matplotlib',
'plotly',
'scikit-image'
]
)