forked from pycollada/meshtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 746 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
29
30
31
32
from setuptools import find_packages, setup
install_requires = []
try:
import collada
except ImportError:
install_requires.append("pycollada>=0.4")
try:
import PIL
except ImportError:
install_requires.append("PIL")
try:
import argparse
except ImportError:
install_requires.append("argparse")
setup(
name="meshtool",
version="0.3",
description="Tool for manipulating collada meshes",
author="Jeff Terrace and contributors",
author_email="[email protected]",
platforms=["any"],
license="BSD",
install_requires=install_requires,
url="https://github.com/pycollada/meshtool",
entry_points={"console_scripts": ["meshtool = meshtool.__main__:main"]},
packages=find_packages(),
)