-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 839 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 839 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
from setuptools import setup
setup(name="convertcloud",
version="0.1.0",
description="Pointcloud format converter",
author="Alvaro Capellan, Olivier Roulet-Dubonnet",
author_email="capellan.alvaro@gmail.com",
url="https://github.com/alvcap/convertcloud",
packages=["convertcloud"],
provides=["convertcloud"],
license="GNU Lesser General Public License v3",
entry_points={"console_scripts":
["cvc = convertcloud.converter:main"]
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
)