forked from jdoepfert/roipoly.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 650 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
meta = {}
exec(open('./roipoly/version.py').read(), meta)
meta['long_description'] = open('./README.org').read()
setup(
name='roipoly',
version=meta['__version__'],
description='Tool to draw regions of interest (ROIs)',
long_description=meta['long_description'],
long_description_content_type='text/plain',
author='Joerg Doepfert',
author_email='joerg.doepfert@gmx.net',
url='https://github.com/jdoepfert/roipoly.py',
python_requires='>=2.7',
install_requires=[
'matplotlib',
'numpy',
],
packages=['roipoly'],
license='Apache License, Version 2.0',
)