This repository was archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 1.29 KB
/
setup.py
File metadata and controls
executable file
·34 lines (33 loc) · 1.29 KB
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
33
34
#!/usr/bin/env python
from setuptools import find_packages, setup
from img2scad.img2scad import __doc__, __version__, __author__, __email__
setup(
name='img2scad',
version=__version__,
description='Image to OpenSCAD converter',
long_description=__doc__,
url='http://github.com/l0b0/img2scad',
keywords='image images height heightmap heightmaps elevation convert converter OpenSCAD SCAD',
packages=find_packages(exclude=['tests']),
install_requires=['Pillow==2.6.1'],
entry_points={
'console_scripts': ['img2scad=img2scad.img2scad:main']},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
'Topic :: Multimedia :: Graphics :: Graphics Conversion'
],
test_suite='tests.tests',
author=__author__,
author_email=__email__,
maintainer=__author__,
maintainer_email=__email__,
download_url='http://github.com/l0b0/img2scad',
platforms=['POSIX', 'Windows'],
license='GPL v3 or newer')