-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 870 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 870 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
import pathlib
from setuptools import setup, find_packages
root_dirpath = pathlib.Path(__file__).parent
readme_filepath = (root_dirpath / "README.md").read_text()
setup(
name="simpleicp",
version="2.0.14", # should match version in __init__.py
description="Simple version of the Iterative Closest Point (ICP) algorithm",
long_description=readme_filepath,
long_description_content_type="text/markdown",
url="https://github.com/pglira/simpleICP/tree/master/python",
author="Philipp Glira",
author_email="philipp.glira@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(exclude=("tests",)),
install_requires=["numpy", "scipy>=1.6", "lmfit", "pandas"],
)