-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
43 lines (38 loc) · 1.65 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
39
40
41
42
43
import os
from setuptools import setup, find_packages
from polarTransform._version import __version__
currentPath = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(currentPath, 'README.rst'), 'r') as f:
long_description = f.read()
long_description = '\n' + long_description
setup(name='polarTransform',
version=__version__,
description='Library that can converts between polar and cartesian domain with images and individual points.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Addison Elliott',
author_email='[email protected]',
url='https://github.com/addisonElliott/polarTransform',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='polar transform cartesian conversion logPolar linearPolar cv2 opencv radius theta angle image images',
project_urls={
'Documentation': 'http://polartransform.readthedocs.io',
'Source': 'https://github.com/addisonElliott/polarTransform',
'Tracker': 'https://github.com/addisonElliott/polarTransform/issues',
},
python_requires='>=3',
packages=find_packages(),
include_package_data=True,
license='MIT License',
install_requires=[
'numpy', 'scipy', 'scikit-image']
)