-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (44 loc) · 1.59 KB
/
setup.py
File metadata and controls
49 lines (44 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
from os import path
import setuptools
with open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
# extract version
path = path.realpath('src/microEye/_version.py')
version_ns = {}
with open(path, encoding='utf8') as f:
exec(f.read(), {}, version_ns)
version = version_ns['__version__']
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='microeye',
version=version,
author='Mohammad Nour Alsamsam',
author_email='nour.alsamsam@gmail.com',
description='A python toolkit for fluorescence microscopy \
that features hardware control, data analysis and vizualization \
for super-resolution single-molecule localization microscopy and \
single-partical tracking.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/samhitech/microEye',
project_urls={
'miEye Paper': 'https://doi.org/10.1016/j.ohx.2022.e00368',
'miEye OSF': 'http://doi.org/10.17605/osf.io/j2fqy',
},
classifiers=[
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'microEye = microEye.launcher:main',
],
},
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
python_requires='>=3.9.4, <3.12',
include_package_data=True,
install_requires=requirements,
)