-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
54 lines (40 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
"""pycoreimage setup module.
To install pycoreimage, open a terminal window, and
- cd /path/to/this/directory/
- python setup.py --user
To experiment and make changes to the source code:
- cd /path/to/this/directory/
- python setup.py develop --user
"""
# https://packaging.python.org/guides/distributing-packages-using-setuptools/
from setuptools import setup
# Get current __version__
#execfile('pycoreimage/__init__.py')
exec(open('pycoreimage/__init__.py').read())
setup(
name='pycoreimage',
version=__version__,
description='Python bindings for Core Image',
# FIXME:
url='https://developer.apple.com/sample-code/wwdc/2016/',
author='Apple Inc.',
# https://pypi.org/classifiers/
classifiers=[
'Development Status :: 3 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='CoreImage',
packages=['pycoreimage'],
install_requires=['numpy>=1.13.0',
'matplotlib>=1.3.1',
'pyobjc>=4.2',
],
)