-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 787 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 787 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
# -*- coding: utf-8 -*-
'''
Setting up the Salient region detection in images package.
'''
from setuptools import setup, find_packages
from pip.req import parse_requirements
with open('README.md') as f:
readme = f.read()
# Parse requirements.txt file
lines = parse_requirements('requirements.txt', session=False)
requirements = [str(item.req) for item in lines]
setup(
name='salientregions',
version='1.0.3',
install_requires=requirements,
description='Package for finding salient regions in images',
#long_description=readme,
author='Netherlands eScience Center',
url='https://github.com/NLeSC/SalientRegions-python',
download_url = 'https://github.com/NLeSC/SalientDetector-python/tarball/v1.0.3',
packages=find_packages(exclude=('tests'))
)