forked from TRI-AMDD/trixs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (57 loc) · 2.03 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
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
# DESCRIPTION must be one line
DESCRIPTION = "Data analysis and machine learning for X-ray spectroscopy"
LONG_DESCRIPTION = """
[Toyota Research Institute](http://www.tri.global/accelerated-materials-design-and-discovery/)
X-ray Spectroscopy (TRIXS) is a suite of tools that enables analysis, comparison, and machine learning
for X-ray spectroscopy measurements.
Currently available tools focus on X-ray absorption spectroscopy, particularly XANES spectra.
"""
setup(name="trixs",
url="https://github.com/TRI-AMDD/trixs",
version="2020.7.8",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=["scikit-learn==0.23.1",
"pymatgen",
"imbalanced-learn",
"tqdm",
"matplotlib",
"scipy",
"numpy"
],
extras_require={
"tests": ["pytest",
"pytest-cov",
"coveralls",
"memory_profiler"],
"dev": ["pytest",
"ipywidgets",
"jupyterlab",
"setuptools",
"wheel",
"twine"]
},
entry_points={
"console_scripts": [
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
include_package_data=True,
author="AMDD - Toyota Research Institute",
author_email="[email protected]",
maintainer="Linda Hung",
maintainer_email="[email protected]",
license="Apache",
keywords=[
"materials", "chemistry", "science",
"x-ray", "spectroscopy", "xanes",
"machine learning", "AI", "artificial intelligence"
],
)