forked from neutrons/multiphonon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 833 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
#!/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, 'multiphonon', '_version.py')) as f:
exec(f.read(), {}, version_ns)
# define distribution
setup(
name = "multiphonon",
version = version_ns['__version__'],
packages = find_packages(".", exclude=['tests', 'docs']),
package_dir = {'': "."},
test_suite = 'tests',
install_requires = [
'numpy', 'scipy',
],
dependency_links = [
],
author = "SNS-chops team",
description = "Multiphonon scattering and multiple scattering correction for powder data",
license = 'BSD',
keywords = "neutron, inelastic neutron scattering, powder, phonon",
url = "https://github.com/sns-chops/multiphonon",
# download_url = '',
)