forked from pozzo-research-group/phasIR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.28 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
# SET UP FILE:
# in order to run in notebooks as an import XXXXXXXXXXXXX
# 1. Git clone the repository to a local computer
# 2. go to the outermost XXXXXXXXXXX folder
# 3. use "pip install . "
# 4. import packages into a jupyter notebook using "from XXXX import xxxxxx"
import setuptools
setuptools.setup(
name='phasIR',
version='1.0',
url='https://github.com/pozzo-research-group/phasIR.git',
license='MIT',
author='Maria Politi, Jaime Rodriguez,' + \
'Sage Scheiwiller, Shrilakshmi Bonageri',
description='A package for high-throughput measurement of ' + \
'melting temperature using IR bolometry',
description_content_type='text/markdown; charset=UTF-8; variant=GFM',
short_description='Melting temperature determination using IR bolometry',
short_description_content_type='text/markdown',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown; charset=UTF-8; variant=GFM',
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=['numpy',
'pandas',
'scikit-image',
'scikit-learn',
'scipy',
'matplotlib',
'h5py'],
zip_safe=False,
)