forked from lorenwel/linefit_ground_segmentation
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 848 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='linefit',
version='1.0.1',
description='linefit ground segmentation algorithm Python bindings',
author='Qingwen Zhang',
author_email='qingwen@kth.se',
url='https://github.com/Kin-Zhang/linefit',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=[
# List your package dependencies here
],
)