-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (60 loc) · 1.72 KB
/
setup.py
File metadata and controls
62 lines (60 loc) · 1.72 KB
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
#!/usr/bin/env python
import setuptools
from setuptools import find_packages
from distutils.core import setup
import os
from distutils.command.sdist import sdist
# load the description from the README.md file
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
cmdclass={"sdist": sdist},
name="midtools",
version="0.2.7",
packages=setuptools.find_packages(),
license="BSD-III",
author="Mario Reiser",
author_email="mario.mkel@gmail.com",
url="https://github.com/reiserm/midtools",
download_url="",
keywords=["data analysis", "XFEL", "MID"],
description="Analysis tools to process MID measurements (runs).",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">= 3.6",
setup_requires=[
"numpy",
],
install_requires=[
"numpy",
"pandas",
"pyfai",
"h5py",
"PyYAML",
"extra_data",
"extra_geom",
"dask[complete]==2.30.0",
"dask_jobqueue==0.7.1",
"xarray==0.17.0",
"click==7.1.2",
"Xana",
"tqdm",
"pickle5",
],
include_package_data = True,
package_data={'midtools.setup_config': ['*.pkl', '*.npy', '*.ipynb']},
entry_points={
"console_scripts": [
"midtools = midtools.dataset:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)