-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 805 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='Pyspeqtr',
version='0.2.0',
author='Nathan Brewer',
author_email='brewer.nathant@gmail.com',
packages=['Pyspeqtr'],
url=['https://github.com/ntbrewer/Pyspeqtr'],
scripts=['bin/py_grow_decay.py',
'bin/spectrum_fitter.py'],
license='LICENSE.txt',
description='Useful spectroscopic tools and display in qt',
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.4",
"Topic :: Scientific/Engineering :: Physics",
],
requires=['matplotlib', 'numpy', 'lmfit','pyqtgraph'],
)