-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (28 loc) · 900 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
from setuptools import setup, find_packages
from pathlib import Path
def read(filename: str):
with open(Path(__file__).parent / filename, mode='r', encoding='utf-8') as f:
return f.read()
setup(
name='giwaxs_gui',
packages=find_packages(),
version='0.0.5',
author='Vladimir Starostin',
author_email='vladimir.starostin@uni-tuebingen.de',
description='A graphical tool for basic analysis of GIWAXS images.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
license='GPLv3',
python_requires='>=3.6.*',
install_requires=[
'numpy>=1.18.1',
'opencv-python>=4.*.*.*',
'scipy>=1.4.1',
'h5py>=2.10.0',
'PyQt5',
'pyqtgraph'
],
include_package_data=True,
keywords='xray python giwaxs scientific-analysis',
url='https://pypi.org/project/giwaxs-gui/',
)