-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
66 lines (63 loc) · 2.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
__version__ = "0.2.1"
setup(
name='emsigma',
version=__version__,
description="spectral interpretation using gaussian mixtures and autoencoder ",
author='Po-Yen Tung',
author_email='[email protected]',
license='GNU GPLv3',
url="https://github.com/poyentung/sigma",
long_description=long_description,
long_description_content_type='text/markdown',
keywords=[
"hyperspectral imaging analysis",
"energy dispersive x-ray spectroscopy",
"scanning electron microscopy",
"gaussain mixture",
"autoencoder",
"non-negative matrix factorization",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
],
packages=find_packages(),
install_requires=[
"notebook",
"torch == 2.0.1",
"hyperspy == 1.7.5",
"ipywidgets == 8.1.1",
"lmfit == 1.2.2",
"matplotlib == 3.8.0",
"numpy == 1.24.4",
"numba == 0.57.1",
"scikit-learn == 1.3.0",
"scipy",
"umap-learn",
"tqdm == 4.66.1",
"seaborn == 0.12.2",
"plotly == 5.17.0",
"altair == 5.1.1",
"jupyterlab == 4.0.6",
"ipywidgets == 8.1.1",
"jupyter-dash == 0.4.2",
"Werkzeug == 2.2.3",
"Flask == 2.2.5",
],
python_requires=">=3.10",
package_data={
"": ["LICENSE", "README.md"],
"sigma": ["*.py"],
},
)