-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 903 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
version_ns = {}
with open(os.path.join(here, 'bem', '_version.py')) as f:
exec(f.read(), {}, version_ns)
# define distribution
setup(
name = "bem",
version = version_ns['__version__'],
packages = find_packages(".", exclude=['tests', 'notebooks', 'docs']),
package_dir = {'': "."},
data_files = [],
test_suite = 'tests',
install_requires = [
'pyyaml', 'numpy', 'scipy', 'matplotlib',
'diffpy.structure', 'periodictable', 'pandas',
],
dependency_links = [
],
author = "ORNL neutron imaging team",
description = "Bragg Edge modeling",
license = 'BSD',
keywords = "instrument, neutron, imaging, Bragg Edge",
url = "https://github.com/ornlneutronimaging/braggedgemodeling",
# download_url = '',
)
# End of file