-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 751 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 751 Bytes
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
import os
from setuptools import setup, find_packages
# retrieving version
f = open(os.path.join('deglitching', 'version'), 'r')
ver = f.readline()
f.close()
setup(
name = 'deglitching',
version = ver,
description = 'Python library to deglitch Larch XAS data',
author = 'Samuel M. Wallace',
url = 'https://github.com/wallacesam/deglitching',
license = 'BSD',
test_suite = 'tests',
packages = find_packages(),
long_description = open('README.md').read(),
include_package_data = True,
install_requires = [
'xraylarch>=0.9.47',
'numpy>=1.16.4',
'scipy>=1.3.1',
'bokeh>=2.2.3',
'ipywidgets>=7.5.1',
],
)