forked from kmiernik/Pyspectr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 774 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
from distutils.core import setup
setup(
name='Pyspectr',
version='0.1.0',
author='Krzysztof Miernik',
author_email='kamiernik@gmail.com',
packages=['Pyspectr'],
url=['https://github.com/kmiernik/Pyspectr'],
scripts=['bin/py_grow_decay.py',
'bin/spectrum_fitter.py'],
license='LICENSE.txt',
description='Useful spectroscopic tools',
long_description=open('README.txt').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.3",
"Topic :: Scientific/Engineering :: Physics",
],
requires=['matplotlib', 'numpy', 'lmfit'],
)