-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 709 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2015-12-19 02:09:53
# @Author : Gefu Tang (tanggefu@gmail.com)
# @Link : https://github.com/primetang/pylsd
# @Version : 0.0.1
from setuptools import setup
setup(
name='pylsd',
version='0.0.1',
description='pylsd is the python bindings for LSD - Line Segment Detector',
author='Gefu Tang',
author_email='tanggefu@gmail.com',
license='BSD',
keywords="LSD",
url='https://github.com/primetang/pylsd',
packages=['pylsd', 'pylsd.bindings', 'pylsd.lib'],
package_dir={'pylsd.lib': 'pylsd/lib'},
package_data={'pylsd.lib': [
'darwin/*.dylib', 'win32/x86/*.dll', 'win32/x64/*.dll', 'linux/*.so']},
)