-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.34 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.34 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
README = f.read()
return README
exec(open('sgmdata/version.py').read())
setup(
name="sgm-data",
version=__version__,
description="Module for loading, interpolating and plotting data taken at the SGM Beamline at the Canadian Light Source.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/Canadian-Light-Source/sgmdata",
author="Zachary Arthur",
author_email="zachary.arthur@lightsource.ca",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7"
],
packages=find_packages(),
include_package_data=True,
package_data={"sgmdata": [
"plots/callbacks/eemscan/*.js",
"plots/callbacks/xrfmap/*.js",
]},
install_requires=[
"blosc==1.10.2",
"lz4==3.1.3",
"dask[complete]>=2021.03.0",
"msgpack==1.0.2",
"pandas>=1.1.5",
"h5py>=2.10.0",
"h5pyd",
"bokeh>=1.4.0",
"numpy>=1.18.3",
"scipy>=1.4.1",
"tqdm",
"python-slugify",
"beautifulsoup4",
"matplotlib",
"requests",
"lmfit",
"cryptography"
]
)