-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 912 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 912 Bytes
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
import setuptools
setuptools.setup(
name='eggcounting',
version='0.0.2',
description='GUI for counting eggs',
url='https://github.com/Tierpsy/EggCounting',
author='Luigi Feriani',
author_email='l.feriani@lms.mrc.ac.uk',
license='MIT',
packages=setuptools.find_packages(),
package_data={"": ["*.qss"]},
zip_safe=False,
entry_points={
"console_scripts": [
"create_timelapse="
+ "eggcounting.timelapse_tools.make_timelapse:"
+ "main",
"count_eggs="
+ "eggcounting.count_eggs.EggCounter:"
+ "main",
"add_wells_info="
+ "eggcounting.utils.add_wells_division:"
+ "add_wells_to_annotations",
"add_wells_info_folder="
+ "eggcounting.utils.add_wells_division:"
+ "add_wells_to_annotations_in_folder",
]
},
)