-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 974 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
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
DISTNAME = 'PSF-Extractor'
DESCRIPTION = 'PSF-Extractor: Characterize the PSF of an optical setup'
MAINTAINER = 'Ryan Lane'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'LICENSE'
README = 'README.md'
URL = 'https://github.com/hoogenboom-group/PSF-Extractor'
VERSION = '0.2'
PACKAGES = ['psf_extractor']
INSTALL_REQUIRES = [
'numpy',
'scipy',
'pandas',
'matplotlib',
'scikit-image',
'trackpy',
'tqdm',
'dask',
'joblib',
'xarray',
'mpl_interactions',
'ipympl'
]
if __name__ == '__main__':
setup(name=DISTNAME,
version=VERSION,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
packages=PACKAGES,
include_package_data=True,
url=URL,
license=LICENSE,
description=DESCRIPTION,
long_description=open(README).read(),
install_requires=INSTALL_REQUIRES)