-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 954 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
from setuptools import setup
setup(
name='NRSS',
version='0.1.0',
description='NIST RSoXS Simulation Suite',
url='https://github.com/pdudenas/NRSS',
author='Peter Dudenas',
author_email='[email protected]',
license='NIST',
packages=['NRSS'],
install_requires=['PyHyperScattering>=0.1.7',
'numpy',
'scipy',
'scikit-image',
'pandas',
'matplotlib',
'h5py'],
include_package_data=True,
package_data={'': ['cmap/*']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: NIST',
'Operating System :: POSIX :: Linux',
'Topic :; Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics'
'Programming Language :: Python :: 3'
],
)