-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
58 lines (54 loc) · 1.96 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
###############################################################################
# volumina: volume slicing and editing library
#
# Copyright (C) 2011-2014, the ilastik developers
# <team@ilastik.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the Lesser GNU General Public License
# as published by the Free Software Foundation; either version 2.1
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# See the files LICENSE.lgpl2 and LICENSE.lgpl3 for full text of the
# GNU Lesser General Public License version 2.1 and 3 respectively.
# This information is also available on the ilastik web site at:
# http://ilastik.org/license/
###############################################################################
from setuptools import setup
import setuptools_scm
packages = [
"volumina",
"volumina._testing",
"volumina.icons",
"volumina.pixelpipeline",
"volumina.pixelpipeline.datasources",
"volumina.pixelpipeline.imagesources",
"volumina.skeletons",
"volumina.tiling",
"volumina.utility",
"volumina.view3d",
"volumina.widgets",
]
package_data = {
"volumina": ["*.ui"],
"volumina._testing": ["*.npy", "*.txt"],
"volumina.icons": ["*"],
"volumina.view3d": ["ui/*.ui"],
"volumina.widgets": ["*.ui", "ui/*.ui"],
}
_version = setuptools_scm.get_version(write_to="volumina/_version.py")
setup(
name="volumina",
version=_version,
description="Volume Slicing and Editing",
url="https://github.com/Ilastik/volumina",
packages=packages,
package_data=package_data,
python_requires=">=3.7",
entry_points={"console_scripts": ["volumina = volumina.__main__:main"]},
)