forked from lcmd-epfl/mikimo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.19 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
from glob import glob
from os import path
import setuptools
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
script_files = []
for fname in glob("navicat_mikimo/**/*", recursive=True):
if path.isfile(fname):
script_files += [fname]
setup(
name="navicat_mikimo",
version="1.0.1",
description="microkinetic modeling code for homogeneous catalytic reactions",
long_description=long_description,
long_description_content_type="text/x-rst",
author="pregabalin_hoshiyomi",
author_email="thanapat.worakul@epfl.ch",
url="https://github.com/lcmd-epfl/mikimo",
packages=["navicat_mikimo"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=[
"numpy",
"scipy",
"autograd",
"matplotlib",
"pandas",
"h5py",
"fire",
"navicat_volcanic",
"openpyxl",
],
keywords="computational chemistry utility",
entry_points={"console_scripts": ["navicat_mikimo=navicat_mikimo.__main__:main"]},
include_package_data=True,
)