forked from HEXRD/hexrdgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.11 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages, Extension
install_reqs = [
'hexrd',
'fabio>=0.11',
'matplotlib',
'Pillow',
'pyside6',
'pyyaml',
'silx',
]
setup(
name='hexrdgui',
use_scm_version=True,
setup_requires=['setuptools-scm'],
description='',
long_description='',
author='Kitware, Inc.',
author_email='kitware@kitware.com',
url='https://github.com/hexrd/hexrdgui',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=find_packages(),
package_data={'hexrdgui': ['resources/**/*']},
python_requires='>=3.10',
install_requires=install_reqs,
entry_points={
'gui_scripts': [
'hexrdgui = hexrdgui.main:main'
]
}
)