-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 819 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 819 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
from setuptools import setup
import os
current_folder = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_folder, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pclines',
version='1.0.2',
description='PCLines transform for python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RomanJuranek/pclines-python',
author='Roman Juranek',
author_email='ijuranek@fit.vutbr.cz',
license='BSD3',
keywords='pclines, hough transform, line detection',
packages=["pclines"],
install_requires=['numpy','numba','scikit-image'],
python_requires='>=3.6',
project_urls={
"Bug reports": 'https://github.com/RomanJuranek/pclines-python/issues',
},
)