-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (30 loc) · 988 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
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2020-04-04 15:48:44
# @Author : Andranik Sargsyan ([email protected])
# @Link : https://github.com/AndranikSargsyan/pylsd-nova
# @Version : 0.0.1
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='pylsd-nova',
version='1.2.1',
author='Andranik Sargsyan',
author_email='[email protected]',
description='pylsd-nova is a python binding for LSD - Line Segment Detector',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD',
keywords='LSD',
url='https://github.com/AndranikSargsyan/pylsd-nova',
packages=['pylsd', 'pylsd.bindings', 'pylsd.lib'],
package_dir={'pylsd.lib': 'pylsd/lib'},
package_data={'pylsd.lib': [
'darwin/arm64/*.dylib',
'darwin/x64/*.dylib',
'win32/x86/*.dll',
'win32/x64/*.dll',
'linux/*.so'
]},
)