-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (60 loc) · 2.11 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
60
61
62
from setuptools import setup
with open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="imgreg",
version="1.0.4",
description="Image registration models with extendable interfaces.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Fabian A. Preiss, Jendrik A. Potyka",
author_email="devops@digon.io, devops@digon.io",
license="GPLv3",
packages=[
"imgreg",
"imgreg.data",
"imgreg.models",
"imgreg.util",
"imgreg.models.logpolar",
"imgreg.models.angleselect",
"imgreg.models.radon",
"imgreg.models.validator",
],
keywords="image registration data analysis science",
package_data={"imgreg": ["data/ref_img.jpg", "data/mod_img.jpg"]},
include_package_data=True,
test_suite="pytest",
install_requires=[
"numpy==1.20.3",
"scipy==1.6.3",
"scikit-image==0.18.1",
"matplotlib==3.4.1",
"typeguard==2.12.0",
"graphviz==0.16",
"Pillow==8.2.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Operating System :: Unix",
"Operating System :: POSIX",
"Typing :: Typed",
],
zip_safe=False,
url="https://gitlab.com/DigonIO/imgreg",
project_urls={
"Documentation": "https://imgreg.readthedocs.io/en/latest/",
"Source Code": "https://gitlab.com/DigonIO/imgreg",
"Bug Tracker": "https://gitlab.com/DigonIO/imgreg/-/issues",
},
)