forked from Yarroudh/segment-lidar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 973 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
26
27
28
from setuptools import setup, find_packages
with open("requirements.txt", "r") as file:
requirements = file.read().splitlines()
setup(
name="segment-lidar",
version='0.1.4',
description="A package for segmenting LiDAR data using Segment-Anything Model (SAM) from Meta AI Research.",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
license='BSD 3-Clause "New" or "Revised" License',
author='Anass Yarroudh',
author_email='[email protected]',
url='https://github.com/Yarroudh/segment-lidar',
packages=find_packages(),
install_requires=requirements,
entry_points={
"console_scripts": [
"segment-lidar=segment_lidar.main:cli"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)