-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (54 loc) · 1.65 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import exists, dirname, realpath
from setuptools import setup, find_packages
import sys
author = u"BMicro developers"
# authors in alphabetical order
authors = [
"Matthias Bär",
"Paul Müller",
"Raimund Schlüßler",
"Timon Beck",
]
description = 'GUI for Brillouin evaluation'
name = 'bmicro'
year = "2022"
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
try:
from _version import version
except BaseException:
version = "unknown"
setup(
name=name,
author=author,
author_email='[email protected]',
url='https://github.com/BrillouinMicroscopy/BMicro',
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license="GPL v3",
description=description,
long_description=open('README.rst').read() if exists('README.rst') else '',
install_requires=["bmlab>=0.10.0",
"h5py>=2.10.0",
"matplotlib",
"numpy>=1.17.0",
"pyqt6>=6.6.0",
"pyqt6-qt6>=6.6.0",
"pytest",
"pytest-qt",
"pytest_mock",
"scikit-image",
"scipy==1.14.1"
],
python_requires=">=3.10",
keywords=["Brillouin Microscopy"],
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
],
platforms=['ALL'],
)