-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (44 loc) · 1.57 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
VERSION = '1.1.7'
DESCRIPTION = 'KiMecO'
LONG_DESCRIPTION = 'Kinetic Mechanism Optimizer'
# Setting up
setup(
name="kimeco",
version=VERSION,
author="Clement Soulie",
author_email="clement.soulie31@gmail.com",
maintainer="Clement Soulie",
maintainer_email="clement.soulie31@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
python_requires='>=3.10.14',
packages=find_packages(),
install_requires=["ase>=3.22.1",
"cantera>=3.0.0",
"numpy>=2",
"pandas>=2.2",
"sqlalchemy",
"sqlalchemy-utils",
"dash",
"scipy>=1.10",
"plotly>=5",
"pint",
"pyarrow>=14"],
extras_require={"test": ["pytest>=9.0.2"]},
keywords=['python',
'kimeco',
'machine learning',
'master equation',
'kinetics',
'kinetic mechanism',
'non linear optimizer'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research/Kinetics",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: Linux",
]
)