-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (38 loc) · 2.2 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
53
54
import os
import pathlib
import setuptools
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
long_description = readme.read()
setuptools.setup(
name="lauetoolsnn",
version="3.0.71",
author="Ravi raj purohit PURUSHOTTAM RAJ PUROHIT",
author_email="purushot@esrf.fr",
description="LaueNN- neural network training and prediction routine to index single and polycrystalline Laue diffraction patterns",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(),
url="https://github.com/ravipurohit1991/lauetoolsnn",
setup_requires=['matplotlib', 'Keras', 'scipy','numpy', 'h5py', 'tensorflow', 'PyQt5', 'scikit-learn', 'fabio', 'networkx', 'scikit-image', 'tqdm'],
install_requires=['matplotlib>=3.4.2', 'Keras>=2.7.0', 'scipy>=1.7.0','numpy>=1.18.5', 'h5py>=3.1', 'tensorflow>=2.7.0', 'PyQt5>=5.9', 'scikit-learn>=0.24.2', 'fabio>=0.11.0', 'networkx>=2.6.3', 'scikit-image>=0.18.0','tqdm>=4.60.0'],
entry_points={
"console_scripts": ["lauetoolsnn=lauetoolsnn.lauetoolsneuralnetwork:start",
"lauenn=lauetoolsnn.lauetoolsneuralnetwork:start",
"lauenn_addmat=lauetoolsnn.util_scripts.add_material:start",
"lauenn_mat=lauetoolsnn.util_scripts.add_material:querymat"]
},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License "
],
python_requires='>=3.7',
# >=3.7 is required becquse of PyQt5
)