forked from pycollada/meshtool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 772 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 772 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
26
27
28
29
30
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 = 'jterrace@gmail.com',
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()
)