forked from Lydorn/Polygonization-by-Frame-Field-Learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 737 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
import pathlib
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setuptools.setup(
name="frame_field_learning",
version="0.0.1",
description="Polygonization by learning a frame field output in addition to image segmentation",
long_description=README,
long_description_content_type="text/markdown",
author="Nicolas Girard",
author_email="[email protected]",
license="INRIA",
classifiers=[
"License :: INRIA",
"Programming Language :: Python"
],
packages=setuptools.find_packages(),
python_requires=">=3.6"
)