forked from zhiqi-li/Panoptic-SegFormer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 682 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
from setuptools import find_packages
import os
thelibFolder = os.path.dirname(os.path.realpath(__file__))
requirementPath = thelibFolder + '/requirements.txt'
install_requires = [] # Examples: ["gunicorn", "docutils>=0.3", "lxml==0.5a7"]
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
setup(
name='easymd',
version='0.1',
packages=find_packages(),
url='',
license='Apache',
author='Li Zhiqi',
install_requires=install_requires,
author_email='lzq@smail.nju.edu.cn',
description='This package aims to enrich the ability of MMdetection'
)