-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
52 lines (46 loc) · 1.37 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
#!/usr/bin/env python
import os
import glob
from setuptools import setup, find_packages
# under windows, run
# python.exe setup.py bdist --format msi
# to create a windows installer
version_long = '0.2.4'
# package data
os.chdir('lib/reda/testing')
package_data = glob.glob('data/*')
os.chdir('../../../')
if __name__ == '__main__':
setup(
name='reda',
version=version_long,
description='Reproducible Electrical Data Analysis',
long_description=open('README.md', 'r').read(),
long_description_content_type="text/markdown",
author='Maximilian Weigand, Florian M. Wagner, and others',
author_email='[email protected]',
license='MIT',
url='https://github.com/geophysics-ubonn/reda',
packages=find_packages("lib"),
package_dir={'': 'lib'},
package_data={'reda.testing': package_data},
install_requires=[
'importlib_resources',
'numpy',
'scipy',
'pandas',
'matplotlib',
'pillow',
'h5py',
],
extras_require={
"crtomo": [
"crtomo_tools",
],
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)