-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (24 loc) · 887 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
from setuptools import setup
from setuptools import find_packages
__version__ = '0.1.0'
def readme():
with open('README.md') as f:
return f.read()
setup(name='spectrumfitter',
version='0.1.0',
description='basic utility for fitting dielectric spectra',
author='Daniel C Elton',
author_email='[email protected]',
download_url='https://github.com/delton137/spectrumfitter/archive/master.zip',
url='https://github.com/delton137/spectrumfitter',
include_package_data=True,
classifiers=[
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Science/Research'
],
license='MIT',
install_requires=['numpy', 'matplotlib', 'scipy'],
packages=find_packages(),
zip_safe=False)