-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (24 loc) · 791 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
# 2018-April
# github.com/ludlows
# Canny Line (a toolbox for line segments extraction)
from setuptools import find_packages
from setuptools import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="cannyline",
version="0.0.0",
author="ludlows",
description="Canny Line (a toolbox for line segments extraction)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ludlows/CannyLine",
packages=find_packages(),
package_data={'cannyline':["*.py"]},
ext_package='cannyline',
setup_requires=['setuptools', 'opencv-python', 'numpy'],
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
]
)