-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
52 lines (50 loc) · 1.88 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
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
from sscanss.__version import __version__
setup(
name='sscanss',
version=str(__version__),
author='',
author_email='',
url='https://github.com/ISISNeutronMuon/SScanSS-2',
description='A virtual laboratory for planning strain scanning experiments on engineering beam-line instruments',
long_description=open('README.md', encoding='utf8').read(),
packages=find_packages(exclude=["tests"]),
include_package_data=True,
package_data={'': ['*.json', 'static/*', 'static/images/**/*', 'instruments/**/*', 'instruments/**/**/*']},
python_requires='>=3.9',
install_requires=['bitarray',
'cython',
'h5py',
'jsbeautifier',
'jsonschema',
'matplotlib',
'NLopt',
'numpy',
'gimpact',
'Pillow',
'PyInstaller',
'PyOpenGL',
'PyQt6',
'pystache',
'PyQt6-QScintilla',
'scipy',
'tifffile',
'psutil',
],
classifiers=['Programming Language :: Python :: 3.10',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering',
],
entry_points={
'console_scripts': [
'sscanss = sscanss.app.main:main',
'sscanss-editor = sscanss.editor.main:main'
],
},
zip_safe=False,
)