-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (53 loc) · 1.5 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gwaihir",
version="0.0.6",
description="Python package for BCDI data analysis",
author="David Simonne",
author_email="[email protected]",
download_url="https://pypi.org/project/gwaihir/",
data_files=[('', ["licence.txt",
])],
url="https://github.com/DSimonne/gwaihir/tree/master",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
scripts=[
"gwaihir/scripts/handle_sixs_data.py",
"gwaihir/scripts/job_esrf.slurm",
"gwaihir/scripts/run_slurm_job.sh",
"gwaihir/scripts/plot_paraview_slices.py",
],
keywords=["BCDI", "ipywidgets", "PyNX"],
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
"numpy",
"pandas",
"datetime",
"argparse",
"matplotlib",
"ipywidgets",
"ipython",
"ipyvolume",
"scipy",
"xrayutilities",
"tables",
"h5glance",
"PyQt5",
"h5py",
"jupyter",
"bokeh",
"panel",
"scikit-image",
"ipython_genutils",
"nbclassic",
]
)