-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·43 lines (39 loc) · 1.38 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import neutronbraggedge
VERSION = neutronbraggedge.__version__
setup(
name = "neutronbraggedge",
version = VERSION,
author = "Jean Bilheux",
author_email = "[email protected]",
packages = find_packages(exclude=['tests', 'notebooks']),
package_data = { 'neutronbraggedge' : ['data/material_list.dat',
'data/full_material_list.dat']},
include_package_data = True,
data_files = [('neutronbraggedge', ['neutronbraggedge/config.cfg']),
#('neutronbraggedge/data', ['neutronbraggedge/data/material_list.dat'])
],
test_suite = 'tests',
install_requires = [
'numpy',
'configparser',
'pandas',
'lxml',
'html5lib',
'beautifulsoup4',
],
dependency_links = [
],
description = "Bragg Edge work at the SNS",
license = 'BSD',
keywords = "neutron imaging bragg edge",
url = "https://github.com/ornlneutronimaging/BraggEdge",
classifiers = ['Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
# download_url = '',
)
# End of file