-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.05 KB
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
35
36
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
"""resswitch: GUI for analyzing resistive switching data
Useful for analyzing experiments involving memristor
transport measurements.
"""
from setuptools import setup
description = 'Useful for analyzing experiments involving memristor '
description += 'transport measurements.'
setup(name='resswitch',
version='0.1.4',
description='GUI for analyzing resistive switching data',
long_description=description,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics',
],
url='https://github.com/danieljosesilva/resswitch',
author='Daniel Silva',
author_email='[email protected]',
license='MIT',
packages=['resswitch'],
install_requires=[
'matplotlib',
'numpy'
],
scripts=['bin/resswitch'],
include_package_data=True,
zip_safe=False)