forked from aitgcodes/litesoph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (30 loc) · 951 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
36
37
38
#!/usr/bin/env python
"""The setup script"""
import re
from pathlib import Path
from setuptools import setup, find_packages
python_requires = '>=3.7, <3.11'
requirements = [
'click>=8.0.3',
'matplotlib','numpy','ase',
'paramiko', 'scp', 'pexpect','pygubu',
'pillow<=9.5.0'
]
setup_requirements = []
txt = Path('litesoph/__init__.py').read_text()
version = re.search("__version__ = '(.*)'", txt).group(1)
setup(name = 'litesoph',
version=version,
description="Layer Integrated Toolkit and Engine for Simulations of Photo-induced Phenomena",
maintainer='LITESOPH-group',
python_requires=python_requires,
entry_points={
'console_scripts': [
'litesoph=litesoph.cli.cli:cli',
]
},
install_requires=requirements,
packages=find_packages(),
package_data={'litesoph.gui.images':['*.png','*.jpg','*.xbm'], 'litesoph.gui':['*.ui']},
setup_requires=setup_requirements,
)