-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
34 lines (31 loc) · 1 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
33
34
from setuptools import setup, find_packages
import os
version_file = open(os.path.join('.', 'VERSION.txt'))
version_number = version_file.read().strip()
version_file.close()
setup(
name = 'scraps',
description = 'SuperConducting Resonator Analysis and Plotting Software.',
version = version_number,
author = 'Faustin Carter',
author_email = '[email protected]',
license = 'MIT',
url = 'http://github.com/FaustinCarter/scraps',
packages = ['scraps', 'scraps.fitsS21', 'scraps.fitsSweep'],
long_description = open('README.rst').read(),
install_requires = [
'numpy>=1.5',
'matplotlib>=2.0',
'scipy>=0.14',
'lmfit>=0.9.5',
'emcee>=2.2.1',
'pandas>=0.18'
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Visualization'
]
)