-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1012 Bytes
/
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
from setuptools import setup, find_packages
from packageinfo import VERSION, NAME, OSP_CORE_MIN, OSP_CORE_MAX
# Read description
with open('README.md', 'r') as readme:
README_TEXT = readme.read()
# main setup configuration class
setup(
name=NAME,
version=VERSION,
author='MuSyChEn research group at Politecnico di Torino',
description='A collection of wrappers for wet-phase synthesis of Ni-Mn-Co '
'hydroxide',
keywords='SimDOME, CUDS, Precipitation, NMC hydroxide',
long_description=README_TEXT,
packages=find_packages(exclude=("examples", "tests")),
install_requires=[
'osp-core>=' + OSP_CORE_MIN + ', <' + OSP_CORE_MAX,
"graphviz",
"numpy",
"PyYaml",
"scipy",
"scikit-learn",
"mpi4py",
"matplotlib",
"mkl-service",
],
python_requires=">=3.7",
include_package_data=True,
# entry_points={
# 'wrappers':
# ''},
)