forked from facebookresearch/dino
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 1.26 KB
/
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
34
35
36
37
38
import os
from setuptools import setup, find_packages
# :==> Fill in your project data here
version = '0.0.1'
library_name = 'dt_segmentation'
library_webpage = 'https://github.com/sachaMorin/dino'
maintainer = 'Miguel Saavedra'
maintainer_email = 'miguel.angel.saavedra.ruiz@umontreal,ca'
short_description = 'Python library to RUN DINO segmenetation in Duckietown'
full_description = """
Python library to RUN DINO segmenetation in Duckietown.
"""
# <==: Fill in your project data here
# read project dependencies
dependencies_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'requirements.txt')
with open(dependencies_file, 'rt') as fin:
dependencies = list(filter(lambda line: not line.startswith('#'), fin.read().splitlines()))
# compile description
underline = '=' * (len(library_name) + len(short_description) + 2)
description = """
{name}: {short}
{underline}
{long}
""".format(name=library_name, short=short_description, long=full_description, underline=underline)
# setup package
setup(name=library_name,
author=maintainer,
author_email=maintainer_email,
url=library_webpage,
install_requires=dependencies,
packages=find_packages(),
long_description=description,
version=version,
include_package_data=True)