-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
71 lines (55 loc) · 3.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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",
use_scm_version=True,
#version="3.0.79", ##Automatic versioning with github tag
author="Ravi raj purohit PURUSHOTTAM RAJ PUROHIT",
author_email="[email protected]",
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/BM32ESRF/LaueNN",
setup_requires=['setuptools_scm'],
#setup_requires=['setuptools_scm', 'matplotlib', 'Keras', 'scipy','numpy', 'h5py', 'tensorflow', 'PyQt5', 'scikit-learn', 'fabio', 'networkx', 'scikit-image', 'tqdm'],
install_requires=['matplotlib>=3.4.2',
'Keras>=2.7.0,<=2.10.0',
'tensorflow>=2.7.0,<=2.10.0',
'scipy>=1.7.0',
'numpy>=1.18.5,<=1.22.0',
'h5py>=3.1',
'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",
"lauenn_maxhkl=lauetoolsnn.util_scripts.add_material:query_hklmax",
"lauenn_pymatgen=lauetoolsnn.util_scripts.add_material:pymatgen_query",
"lauenn_adddet=lauetoolsnn.util_scripts.add_material:add_detector",
"lauenn_geometry=lauetoolsnn.util_scripts.add_material:set_laue_geometry",
"lauenn_example=lauetoolsnn.util_scripts.add_material:example_scripts"]
},
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.10.8',
)