forked from USNavalResearchLaboratory/PyEBSDIndex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (59 loc) · 1.8 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
from setuptools import setup, find_packages
from pyebsdindex import __author__, __author_email__, __credits__, __description__, __name__, __version__
setup(
# Package description
name=__name__,
version=__version__,
license="Custom",
python_requires=">=3.8",
description=__description__,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: Custom",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
keywords=[
"EBSD",
"electron backscatter diffraction",
"HI",
"Hough indexing",
],
zip_safe=True,
# Contact
author=__credits__,
download_url="https://github.com/drowenhorst-nrl/PyEBSDIndex",
maintainer=__author__,
maintainer_email=__author_email__,
project_urls={
"Bug Tracker": "https://github.com/drowenhorst-nrl/PyEBSDIndex/issues",
"Source Code": "https://github.com/drowenhorst-nrl/PyEBSDIndex",
},
# Dependencies
install_requires=[
"matplotlib",
"numpy",
"numba",
"pyopencl",
"ocl_icd_wrapper_apple;sys_platform == 'darwin'",
"ocl-icd-system;sys_platform == 'linux'",
"pyswarms",
"ray[default]",
"scipy",
"h5py",
],
# Files to include when distributing package
packages=find_packages(),
package_dir={"pyebsdindex": "pyebsdindex"},
include_package_data=True,
package_data={
"": ["License"],
"pyebsdindex": ["*.py", "*.cl"],
},
)