You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
321 B
Python
11 lines
321 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='dxf_to_csv',
|
|
version='0.3.1',
|
|
packages=['dxf_to_csv'],
|
|
entry_points={'console_scripts':['dxf_to_csv = dxf_to_csv:main']},
|
|
author='Dan Howe',
|
|
author_email='d.howe@wrl.unsw.edu.au',
|
|
description='Extract points from a dxf file, and save in csv format')
|