-
Notifications
You must be signed in to change notification settings - Fork 0
/
otherSetup.py
28 lines (26 loc) · 891 Bytes
/
otherSetup.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
from setuptools import setup
APP = ['soliton_automata/run.py']
DATA_FILES = ['soliton_automata/styles.css', 'soliton_automata/styles_m.css', 'soliton_automata/data.json']
OPTIONS = {'argv_emulation': True}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
packages = ['soliton_automata', 'soliton_automata.gui', 'soliton_automata.res', 'soliton_automata.soliton_classes', 'soliton_automata.visualisations'],
python_requires = '>=3.7',
install_requires = [
'rdkit>=2021.09.5',
'networkx>=2.6',
'pysmiles>=1.0.1',
'matplotlib>=3.5.1',
'Pyqt5>=5.15.4',
],
package_data={'': ['styles.css', 'styles_m.css', 'data.json']},
include_package_data=True,
entry_points = {
'console_scripts': [
'solitons = soliton_automata.run:main'
],
}
)