forked from flash-center/opacplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (27 loc) · 1.13 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(name="opacplot2",
version='1.0.0',
description='Package for reading, manipulating, and plotting EOS and Opacity data',
author='Milad',
author_email='milad@flash.uchicago.edu',
url='http://flash.uchicago.edu/',
packages=find_packages(),
package_data={'opacplot2': [os.path.join('tests','data', '*')]},
test_suite="opacplot2.tests.run",
install_requires=[
"numpy >= 1.6",
"tables >= 3.0",
"six >= 1.6",
"setuptools >= 18.0",
"periodictable >=1.4.1"
],
entry_points = {
'console_scripts': ['opac-convert = opacplot2.scripts.opac_convert:convert_tables',
'opac-error = opacplot2.scripts.opac_error:check_error',
'sesame-extract = opacplot2.scripts.sesame_extract:extract_tables'
],
}
)