-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
30 lines (27 loc) · 879 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, Extension
import sys
extension_modules = []
setup(
name="moving_pictures",
description="Create a movie from a sequence of images in Python (uses PIL and ffmpeg)",
classifiers=['Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
],
author="Alex Rubinsteyn",
author_email="[email protected]",
license="BSD",
version="0.1",
url="http://github.com/iskandr/moving_pictures",
packages=[ 'moving_pictures' ],
package_dir={ '' : '.' },
requires=[
'numpy',
'scipy',
'progressbar',
'PIL',
],
ext_modules = extension_modules)